c# Programming Glossary: scalability
Entity Framework initialization is SLOW — what can I do to bootstrap it faster? http://stackoverflow.com/questions/10757019/entity-framework-initialization-is-slow-what-can-i-do-to-bootstrap-it-faster DotTrace captured profile implies some terrible algorithm scalability choices deep in the framework as evidenced by the millions of..
What's better: DataSet or DataReader? http://stackoverflow.com/questions/1083193/whats-better-dataset-or-datareader with all the rows taking up memory and possibly affecting scalability. Here's a link that's a little dated but still useful Contrasting..
Getting started with socket programming in C# - Best practices http://stackoverflow.com/questions/1162950/getting-started-with-socket-programming-in-c-sharp-best-practices died without notification . More advanced If you want high scalability you will have to look into asynchronous methods for all the..
Multi-key dictionary in c#? http://stackoverflow.com/questions/1171812/multi-key-dictionary-in-c GetHashcode yourself otherwise you'll likely run into scalability issues. Also you get to avoid nulls which tend to complicate..
A robust SMPP library for .NET [closed] http://stackoverflow.com/questions/4820560/a-robust-smpp-library-for-net can't recall it's name. For me the most important is it's scalability stability and fault tolerance. I may have 500k users and several..
High performance TCP server in C# http://stackoverflow.com/questions/6023264/high-performance-tcp-server-in-c-sharp be async there is no way around this. High performance and scalability don't mix with one thread per socket. You can have a look at..
Why is it a bad idea to use Session to store state in high traffic websites? http://stackoverflow.com/questions/769338/why-is-it-a-bad-idea-to-use-session-to-store-state-in-high-traffic-websites
How to write a scalable Tcp/Ip based server http://stackoverflow.com/questions/869744/how-to-write-a-scalable-tcp-ip-based-server more for you guys. Thanks again. c# .net networking tcp scalability share improve this question I've written something similar..
Is there a synchronization class that guarantee FIFO order in C#? http://stackoverflow.com/questions/961869/is-there-a-synchronization-class-that-guarantee-fifo-order-in-c unfair in recent editions of Windows to improve scalability and reduce lock convoys . Do you definitely need your lock to..
|