Book Image

SignalR Blueprints

By : Einar Ingerbrigsten
Book Image

SignalR Blueprints

By: Einar Ingerbrigsten

Overview of this book

Table of Contents (18 chapters)
SignalR Blueprints
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
9
Debugging or Troubleshooting
Index

Concurrency and staleness


The two issues that often come up when doing development and especially in the LOB application space are concurrency and data staleness. SignalR can be a remedy to this problem. Concurrency is when multiple users update the same thing and is often caused by the fact that the data is stale. If we are currently updating the clients looking at the same data with any changes, this problem pretty much goes away. By saying that this is no longer a problem, the complexity of our solutions can be decreased, creating a more maintainable codebase.