|
What is the fastest way to add an attribute to the root element of a massive XML file? These files are too large to be read into memory and I'd like to avoid as much of an I/O penalty as possible.
Started by Brian on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You'll still take the hit of....
Aren't you going to have to rewrite the entire file anyway if you're inserting text at or near the beginning? A SAX parser should be adaptable to buffer input (via an InputStream) if you don't want it all in memory at once .
|
|
How do you manage a massive (60+ pages) design (HTML/CSS) Project? Like what is your workflow? How do you set milestones?
Started by Nimbuz on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Break the big job into....
Inside every large project is a series of smaller projects waiting to get out .
Decompose.
Step 2.
Often, this won't be apparent until you decompose and prioritize .
Find a way to simplify what they're asking for.
Simplify.
Step 1.
|
|
Is there any good way to design a web page for massive data entry? Datagrids seem to be the best way to handle this type of data entry and I think a client application like Access or SQLite+Frontend would be better suited for this than the web.
Links ...
Started by Andrew Hampton on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It would be especially....
All of this can be done with JavaScript.
So no clicking submit buttons and no waiting for page reloads .
The important part would be to make everything keyboard-accessible, and to reduce as much as possible the wait time between records .
|
Ask your Facebook Friends
|
I am interested in any experience using JS charting packages handling massive amounts of data (for example tens of thousands of data points).
Any performance issues? Browser memory consumptions? Any other issues? Would anyone recommend a particular JavaScript...
Started by Tadas on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Javascript....
It can do things like this.
If we are talking about large data for gMap there is a Cluster Marker .
I have used google maps to display polylines; I've been facing huge performance issues when the polylines had more than a thousand points .
|
|
Simple question hopefully.
We have a style sheet that is over 3000 lines long and there is a noticeable lag when the page is rendering as a result.
Here's the question: Is it better to have one massive style sheet that covers everything, or lots of little...
Started by IP on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
You can opt to create a text stylesheet, a colors stylesheet, and a layout stylesheet, but it's likely not going to... .
3,000 lines? You may want to first go in and look for redundancy, unnecessarily-verbose selectors, and other formatting/content issues .
|
|
Possible Duplicate:
What is the best way to delete a large number of records in t-sql?
What is the fastest way to delete massive numbers (billions) of records in SQL?
I want to delete all the records that match a simple rule like myFlag = 3 .
Is it possible...
Started by esylvestre on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
Probably....
What you can do is use a locking hint to reduce the locking overhead and potential contention .
Sorry it is not possible to add a WHERE clause to TRUNCATE
You will have to use a DELETE
You can't use a WHERE with a truncate: it's all or nothing .
|
|
My integers in Ruby (MRI) refuse to overflow. I've noticed the class change from fixnum to bignum but I'm wondering how this is modeled and what sort of process ruby uses to perform arithmetic on these massive integers. I've seen this behaviour in SCHEME...
Started by deau on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
There are a lot of optimizations that can be done from there (duh), so... .
Basically, it boils down to long-addition/multiplication/division/subtraction.
You can take a look at the source code (in C) in the erl_interface module .
Erlang does this as well.
|
|
What is the recommendations for SMTP services for massive mailing?
Let me clarify , most of the free SMTP services (Gmail, Yahoo, Hotmail, etc...) has limits about the amount of messages you can send in a day.
Gmail, for instance, only allows you to send...
Started by Daniel Silveira on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
You'll have to consider the format of the emails: if you have HTML content, you should think about if images... .
Also, be sure your upload bandwidth is large enough to handle the traffic .
Check that your IP address is not listed on any SMTP spam black lists .
|
|
I've looked at several approaches to enterprise architecture for databases that store massive amounts of data, and it usually comes down to more hardware, database sharding, and storing JSON objects. Has any group been doing research, or does anyone have...
Started by hal10001 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Have a look at the OWL specs....
It also seems to me that they've got some technologies that might provide at least part of the solution .
It seems to me like the Semantic Web folks may have to deal with this issue before too long .
Very interesting question.
|
|
We're using rsnapshot for backups. It keeps lots of snapshots of the backuped up file, but it does delete old ones. This is good. However it's taking about 7 hours to do a rm -rf on a massive directory tree. The filesystem is XFS. I'm not sure how many...
Started by Rory McCann on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at serverfault):
You could try splitting the rm into separate areas and trying to do it in parallel however I might not expect it to... .
This is why block based snapshots are so good:).
If you are doing the rm at effectively at the file level then it will take a long time .
|