|
3 |
tags
|
||
|
2 | update on the results so far | ||
|
edit: many thanks for all the answers. Here are the results after applying the optimisations so far:
The really nice part is this hasn't required any changes in the iphone code I have an iphone application with a large dictionary held in sqlite format (read only). I'm looking for ideas to reduce the size of the DB file, which is currently very large. Here is the number of entries and resulting size of the sqlite DB:
...an average of about 135 bytes per entry. Here is my DB schema:
Here is some sample data:
The last field represents the letter frequencies for anagram retrieval (each position is in the range 0..9). The two booleans represent sub dictionaries. I need to do queries such as:
One idea I have is to encode the letter frequencies more efficiently, e.g. binary encode them as a blob (perhaps with RLE as there are many zeros?). Any ideas for how best to achieve this, or other ideas to reduce the size? I am building the DB in ruby, and reading it on the phone in objective C. Also is there any way to get stats on the DB so I can see what is using the most space? |
||||
|
1 |
|
||
How to reduce the size of an sqlite3 database for iphone?I have an iphone application with a large dictionary held in sqlite format (read only). I'm looking for ideas to reduce the size of the DB file, which is currently very large. Here is the number of entries and resulting size of the sqlite DB:
...an average of about 135 bytes per entry. Here is my DB schema:
Here is some sample data:
The last field represents the letter frequencies for anagram retrieval (each position is in the range 0..9). The two booleans represent sub dictionaries. I need to do queries such as:
One idea I have is to encode the letter frequencies more efficiently, e.g. binary encode them as a blob (perhaps with RLE as there are many zeros?). Any ideas for how best to achieve this, or other ideas to reduce the size? I am building the DB in ruby, and reading it on the phone in objective C. Also is there any way to get stats on the DB so I can see what is using the most space?
|
||||
