c# Programming Glossary: throughput
How to draw line of ten thousands of points with WPF within 0.5 second? http://stackoverflow.com/questions/1150060/how-to-draw-line-of-ten-thousands-of-points-with-wpf-within-0-5-second essentially leveraging value types can improve your throughput if well thought out. Jianzhong Zhang gives my new favourate..
Should we use “workstation” garbage collection or “server” garbage collection? http://stackoverflow.com/questions/1707240/should-we-use-workstation-garbage-collection-or-server-garbage-collection perceived performance is usually more important than raw throughput. The server GC is available only on multiprocessor computers... call returns . In this way the server GC mode maximizes throughput the number of requests per second and improves performance as..
Interprocess communication in .NET http://stackoverflow.com/questions/232332/interprocess-communication-in-net .NET remoting EDIT the key take away here shows that WCF throughput out performs remoting for small data but approaches Remoting..
Fastest method for SQL Server inserts, updates, selects http://stackoverflow.com/questions/2862428/fastest-method-for-sql-server-inserts-updates-selects Build your SQL command question. I'm looking for a high throughput method for a backend app that handles many small transactions...
Trying to run multiple HTTP requests in parallel, but being limited by Windows (registry) http://stackoverflow.com/questions/2960056/trying-to-run-multiple-http-requests-in-parallel-but-being-limited-by-windows result. This works but I found that I'm not getting the throughput I want. Initially I thought it might be the 3rd party having.. everyting from 10 to 100 and this didn't seem to affect my throughput at all so the problem shouldn't be there either. c# multithreading..
Improving performance of multithreaded HttpWebRequests in .NET http://stackoverflow.com/questions/388908/improving-performance-of-multithreaded-httpwebrequests-in-net HttpWebRequests in .NET I am trying to measure the throughput of a webservice. In order to do that I have written a small.. of the tool with each 40 threads I get significantly more throughput than one instance with 80 threads. I found the ServicePointManager.DefaultConnectionLimit..
.Net vs Java Garbage Collector http://stackoverflow.com/questions/492703/net-vs-java-garbage-collector use of the server or client collectors which optimise for throughput verses latency respectively. Active research in GC strategies..
What is the best choice for .net inter-process communication? http://stackoverflow.com/questions/84855/what-is-the-best-choice-for-net-inter-process-communication one is a bit faster. WCF though has much better server throughput than .NET Remoting. If I would start completely new project..
|