Tagged Questions
The efficient-storage tag has no wiki summary.
4
votes
5answers
252 views
Most efficient way to store a big DNA sequence?
I want to pack a giant DNA sequence with an iOS app (about 3,000,000,000 base pairs). Each base pair can have a value A, C, T or G. Storing each base pair in one bytes would give a file of 3 GB, which ...
3
votes
3answers
148 views
Most efficient database date storing method?
So I am looking to store a date in my SQL database and am not sure what the most efficient way would be. I have thought of two different methods.
Firstly, people are going to be able to set a ...
3
votes
3answers
2k views
Converting a byte array to string without using new operator in Java
Is there a way to convert a byte array to string other than using new String(bytearray)? The exact problem is I transmit a json-formatted string over the network through UDP connection. At the other ...
3
votes
2answers
227 views
What's the most efficient way to load data from a file to a collection on-demand?
I'm working on a java project that will allows users to parse multiple files with potentially thousands of lines. The information parsed will be stored in different objects, which then will be added ...
2
votes
2answers
291 views
Best way to store and retrieve a DAWG data structure for fast loading
I have a 500k+ wordlist that I loaded it into a DAWG data structure. My app is for mobile phones. I of course don't want to repeat all the conversion steps to load this wordlist into a DAWG every ...
2
votes
2answers
381 views
How to retrieve the path to a node in a tree - efficiently (related to the post 'parse a flat table into a tree?')
This question is a follow up to this post:
http://stackoverflow.com/questions/192220/what-is-the-most-efficientelegant-way-to-parse-a-flat-table-into-a-tree
I liked the ClosureMap solution, but I ...
2
votes
6answers
761 views
User defined data objects - what is the best data storage strategy?
I am building a system that allows front-end users to define their own business objects. Defining a business object involves creating data fields for that business object and then relating it to other ...
1
vote
1answer
450 views
RSync single (archive) file that changes every time
I am working on an open source backup utility that backs up files and transfers them to various external locations such as Amazon S3, Rackspace Cloud Files, Dropbox, and remote servers through ...
0
votes
4answers
338 views
Is a file read faster than reading data from the database?
Which is more expensive to do in terms of resources and efficiency, File read/write operation or Database Read/Write operation?
I'm using MongoDB, with Python. I't be preforming about 100k requests ...