Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
580 views

fast, large-width, non-cryptographic string hashing in python

I have a need for a high-performance string hashing function in python that produces integers with at least 34 bits of output (64 bits would make sense, but 32 is too few). There are several other ...
2
votes
6answers
361 views

switch to parallel coding

we all writing code for single processor. i wonder when we all are able to write code on multi processors? what do we need (software tools, logic, algorithms) for this switching? edit: in my view, ...
1
vote
4answers
319 views

Higher speed options for executing very large (20 GB) .sql file in MySQL

My firm was delivered a 20+ GB .sql file in reponse to a request for data from the gov't. I don't have many options for getting the data in a different format, so I need options for how to import it ...