3
votes
2answers
47 views
Sharepoint performance under heavy load and capacity limitations
I'm working on a new storage system for a business solution package that consists of around 40 applications. Some of those applications generate documents (mostly docx, some pdf) that are currently …
1
vote
4answers
143 views
Can SQL server 2008 handle 300 transactions a second?
In my current project, the DB is SQL 2005 and the load is around 35 transactions/second. The client is expecting more business and are planning for 300 transactions/second. Currently even with good …
0
votes
1answer
7 views
capacity scoping
how to perform a capacity scoping for sql server ?
0
votes
0answers
14 views
Estimating stream capacity
How many uncompressed PCM 64kbps streams can I fit in a wireless 802.11b connection 5.5 Mb/s when CWmin = 16? I assume that one packet contains 30 bytes + IP+UDP+RTP headers (20+8+12 bytes).
4
votes
2answers
376 views
Best practice for rate limiting users of a REST API?
I am putting together a REST API and as I'm unsure how it will scale or what the demand for it will be, I'd like to be able to rate limit uses of it as well as to be able to temporarily refuse …
4
votes
6answers
625 views
Should a .NET generic dictionary be initialised with a capacity equal to the number of items it will contain?
If I have, say, 100 items that'll be stored in a dictionary, should I initialise it thus?
var myDictionary = new Dictionary<Key, Value>(100);
My understanding is that the .NET dictionary …
2
votes
9answers
171 views
What language(s) for very large lists?
Java (and maybe the underlying C-ish code) has max capacity of Integer.MAX_VALUE (~ 2 billion) for arrays and containers in java.util. Are there other languages that feature containers with larger …
