in reply to •Re: Design Approach (Processing Huge Hash)
in thread Design Approach (Processing Huge Hash)

we do plan to use a database but the problem is that the script has to support different databases (postgres,oracle,Ms-sql).
If we use a database , then inserting all the records will take much more time (we cannot do a bulk insert as we deal with different databases) ,so we came up with the idea of summarizing as this will reduce the number of inserts to the database
As per your suggestion , what i can probably do is insert all the records into SQLLite (as this insertion will be faster than other databases) and then probably summarize the data through SQLlite and then insert that summarized data into postgres or other databases.
Thanks for your comments .
  • Comment on Re^2: Design Approach (Processing Huge Hash)