c# Programming Glossary: synchronisation
How can I debug SessionStateModule/REQUEST_AQUIRE_STATE taking > 100 seconds on half of my requests? http://stackoverflow.com/questions/11250167/how-can-i-debug-sessionstatemodule-request-aquire-state-taking-100-seconds-on . ANTS Profiler reports all the time as Awaiting synchronisation and gives a stack trace in some IIS thread callback none of..
Monitor vs WaitHandle based thread sync http://stackoverflow.com/questions/1355398/monitor-vs-waithandle-based-thread-sync article that it is better to use Monitor Lock for thread synchronisation as it does not use native resources Specific quote from page..
Pipelines, multiplexing, and unbounded buffering http://stackoverflow.com/questions/15021469/pipelines-multiplexing-and-unbounded-buffering a lot of custom code written 6 years ago using many synchronisation events and the design seems somewhat clunky therefore I have..
Re-entrant locks in C# http://stackoverflow.com/questions/391913/re-entrant-locks-in-c-sharp at some point . Here is one good webpage describing thread synchronisation in .NET http dotnetdebug.net 2005 07 20 monitor class avoiding..
C# Events and Thread Safety http://stackoverflow.com/questions/786383/c-sharp-events-and-thread-safety needed is a custom event implementation with appropriate synchronisation in the add and remove accessors. And in addition there is the..
Ways to synchronize interface and implementation comments in C# http://stackoverflow.com/questions/824007/ways-to-synchronize-interface-and-implementation-comments-in-c-sharp its usage in full. Of course this isn't specifically synchronisation as your question mentions but it would seem to be exactly what..
Anyone have experience with architecture for cross platform WP7 Android iOS mobile development (monotouch, monodroid, C#) http://stackoverflow.com/questions/8755801/anyone-have-experience-with-architecture-for-cross-platform-wp7-android-ios-mobi a small amount of local data storage for offline mode and synchronisation with the website when a network is available. I am a Windows..
|