Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
4answers
5k views

Calculating usage of localStorage space

I am creating an app using the Bespin editor and HTML5's localStorage. It stores all files locally and helps with grammar, uses JSLint and some other parsers for CSS and HTML to aid the user. I want ...
14
votes
2answers
2k 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 ...
13
votes
8answers
1k views

Capacity of ArrayList

How to find the capacity of an ArrayList?
13
votes
7answers
277 views

Uses for the capacity value of a string

In the C++ Standard Library, std::string has a public member function capacity() which returns the size of the internal allocated storage, a value greater than or equal to the number of characters in ...
8
votes
6answers
3k views

Default capacity of StringBuilder

What is the default capacity of a StringBuilder? And when should (or shouldn't) the default be used?
7
votes
4answers
127 views

Does clearing a vector affect its capacity?

I instantiate an std::vector foo(1000). foo.size() is now 1000 and foo.capacity() is also 1000. If I clear the vector with foo.clear(), the size() is now 0, but what is the capacity()? Does the ...
7
votes
4answers
419 views

std::vector capacity after copying

Does vector::operator= change vector capacity? If so, how? Does vector's copy constructor copy capacity? I looked through documentation but could not find a specific answer. Is it implementation ...
6
votes
6answers
2k 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 ...
5
votes
8answers
159 views

Declaring the capacity of a List in Java

I often use Lists in my Android applications. Right now I am creating a Twitter page which lists a maximum of 50 "tweets" of a user. I have a List defined like this: List<Tweet> tweets = ...
5
votes
2answers
1k views

NSMutableArray initWithCapacity nuances

Does anyone have advice on how to best initialize an NSMutableArray when it comes to dictating the capacity? The documentation mentions that "...even though you specify a size when you create an ...
3
votes
2answers
167 views

How does StringBuilder's capacity change?

When I have an empty StringBuilder with a capacity of 5 and I write "hello, world!" to it, does the C# standard specify the new capacity of the StringBuilder? I have a vague memory that it's twice the ...
3
votes
3answers
118 views

C# List<> should I lower capacity as I remove items?

I have a List container which can potentially have up to 100,000 items in to start with. While the program is running this list will slowly empty, should I alter the capacity as I empty the list? I ...
3
votes
1answer
156 views

How do I show a warning when server is over capacity to avoid server goes down?

Twitter sometimes shows an message: Twitter is over capacity This is to prevent too much pressure on the servers. Which avoids that the servers go down. How do I implement this in my application? ...
3
votes
2answers
432 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 ...
2
votes
2answers
124 views

How should I implement capacity for C Dymanic Linked List?

I know it is very easy to implement when you are using it as an ADT in OOP languages. But what should be done in case of structured language like C? Should I use a global variable? Should I keep an ...
2
votes
4answers
807 views

StringBuilder capacity()

I noticed that the capacity method returns StringBuilder capacity without a logic way ... sometime its value is equals to the string length other time it's greater... is there an equation for know ...
2
votes
2answers
264 views

Is it possible to give a python dict an initial capacity (and is it usefull)

I am filling a python dict with around 10,000,000 items. My understanding of dict (or hashtables) is that when too much elements get in them, the need to resize, an operation that cost quite some ...
2
votes
2answers
1k views

How to shrink-to-fit an std::vector in a memory-efficient way?

I would like to 'shrink-to-fit' an std::vector, to reduce its capacity to its exact size, so that additional memory is freed. The standard trick seems to be the one described here: template< ...
2
votes
9answers
185 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 ...
1
vote
1answer
25 views

ActiveMQ network of brokers increased latency

I have configured an ActiveMQ network of brokers, which seems to work fine, function wise. However, the capacity of messages traveling from a producer which is connectes to broker a, to a consumer ...
1
vote
2answers
124 views

By how much does vector::resize increase capacity?

As far as I know the C++ standard does not specify exactly how vector capacity is increased when vector::resize requires an increase. But is there a "typical" implementation? Specifically: I don't ...
1
vote
5answers
67 views

Best List Capacity For a Known Distribution

Is there a best algorithm for defining the capacity of a C# list in the constructor, if the general distribution of eventual sizes is known? As a concrete example, if the numbers of values to be ...
1
vote
1answer
58 views

Postcript: maxium array size?

Is there a maximum size for a postscript array ? I wrote a PS document containing containing an array that is displayed in ghostview without any problem. But when the number of items in this array ...
1
vote
3answers
176 views

Why does ensureCapacity() in Java ArrayList extend the capacity with a const 1.5 or (oldCapacity * 3)/2 + 1?

Why does ensureCapacity() in Java ArrayList extend the capacity with a const 1.5 or (oldCapacity * 3)/2 + 1?
1
vote
1answer
141 views

NSMutableDictionary with capacity

What happens when you try to add to an NSMutableDictionary once it has already reached its capacity limit of objects? Does this bump one out or is this going to throw an exception? Also is there any ...
1
vote
1answer
120 views

Finding Unmapped Network Share Capacity in Windows

I need to find the underlying disk capacity (total size) of an unmapped network share in windows (in Win7, Vista, XP, Server 2008), given a UNC path (e.g. given something like "\\share_1\subdir"). ...
1
vote
1answer
797 views

How much VRAM on each iPhone/iPod model?

I know MBX model has limit of 24MB VRAM. How about SGX models? And can I assume all iPhone/iPod touch models have SGX or MBX at least? No other models? And how much memory bandwidth (to/from GPU) they ...
1
vote
1answer
157 views

How do I compute the capacity of a hard disk?

I have a worked example of how to compute the capacity of a hard disk, could anyone explain where the BOLD figures came out of? RPM: 7200 no of sectors: 400 no of platters: 6 no of heads: 12 ...
1
vote
4answers
989 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
100 views

Why does StringBuilder have a default capacity of 16 characters?

Why does StringBuilder have a default capacity of 16 characters? Is this some kind of optimization? StringBuilder builder = new StringBuilder(); Console.WriteLine("builder capacity: '{0}'", ...
0
votes
1answer
57 views

iTunes / About This Mac Storage Capacity Bars

I'm trying to find out if it's possible to recreate the capacity bars in Lion, like so... http://thenextweb.com/files/2011/07/about-this-mac-storage.png I've seen third party apps (such as Windows ...
0
votes
2answers
48 views

how do I test my ASP.NET website being hosted on shared server for lot of visitors a day?

I have property related website, going to be hosted on shared server. I want to test my site for large number of visitors. Roughly I just want to get idea about response time by going thru each page ...
0
votes
0answers
13 views

How distributed high capacity services implement limits?

How distributed real time services such as Cloud Front (1000 requests/second limit) implement counters and limits? The challenges here are no where simple: How to implement high capacity real time ...
0
votes
3answers
40 views

Increasing capacity of RAID5 array [closed]

Assume that I built an 2TB RAID5 array and its running and some data is stored on it. Now I need to increase its size to 5TB. Can I increase capacity (By adding extra drives)? How? If Yes is it ...
0
votes
1answer
7 views

Is it possible to add a capacity to specific form fields?

I'm working on a conference registration form that has check boxes for which events the user would like to attend, but some of those events have capacities. Client wants those options to turn off when ...
0
votes
1answer
58 views

Could there be an issue with the max. memory capacity? Or why is this variable partly released?

I'm developing an iPad app and I ran into a really weird issue here. I'll try to explain it as good as possible. I have a class named TranslationObject which is holding a key and a textual value. I ...
0
votes
0answers
20 views

Capacity effectiveness of the DNA comparing to the modern storing technologies [closed]

DNA can be considered as a storage mechanism for the data. What its capacity capabilities comparing to modern storing technologies: Flash, hard-drive etc?
0
votes
1answer
37 views

How many capacity store data in apps iPad?

I'd like store files into application iPad and i'd like some information about how many capacity store data in own apps iPad. Please help me, thanks you !
0
votes
4answers
278 views

How to define the concept of capacity in ArrayLists?

I understand that capacity is the number of elements or available spaces in an ArrayList that may or may not hold a value referencing an object. I am trying to understand more about the concept of ...
0
votes
2answers
222 views

What is the average capacity of a postfix mail server?

I appreciate there is no 'set' answer to this question. I am trying to assess the performance of our dedicated mail server for sending out emails. The server is of the spec below: 2G RAM CPU Xeon ...
0
votes
2answers
195 views

How can we limit the capacity of an NSMutableDictionary?

Is there any way to create a mutable dictionary with a capacity limit rather than an initial capacity? Say you want to create a dictionary that will only ever have, at most, 100 entries. The ...
0
votes
2answers
628 views

How to use jquery to create progress bar for loading an image?

I want to take size in bytes of image in page at the first load page, and then create a loading bar and show it loading similar preloader of flash. But I don't know if jQuery can take size in bytes of ...
0
votes
1answer
207 views

Getting Numbers From A CFDictionary For Use In Calculations, iPhone

I found this in my travels: http://www.opensource.apple.com/source/IOKitUser/IOKitUser-502/ps.subproj/IOPSKeys.h How would I get the values (as a number) of: #define kIOPSMaxCapacityKey "Max ...
0
votes
3answers
797 views

Return Capacity Values, Not Percent (iPhone)

Using this method here how would I return the curCapacity and maxCapacity mAh values rather than a percent? ...
0
votes
1answer
76 views

Finding curCapacity and maxCapacity Value, iPhone

A method which can be used for finding the battery percentage of your device is found here: http://blog.coriolis.ch/2009/02/14/reading-the-battery-level-programmatically/comment-page-1/#comment-6085 ...
0
votes
1answer
20 views

capacity scoping

how to perform a capacity scoping for sql server ?