Tagged Questions

6
votes
5answers
1k views

Best data structure for crossword puzzle search

I have a large database for solving crossword puzzles, consisting of a word and a description. My application allows searching for words of a specific length and characters on specific positions (this ...
5
votes
3answers
178 views

Do DB indexes take same amount of disc space as column data?

If I have a table column with data and create an index on this column, will the index take same amount of disc space as the column itself? I'm interested because I'm trying to understand if b-trees ...
4
votes
2answers
164 views

How does couchdb retrieve all previous revisions?

From what I understand, CouchDB's Btree implementation actually uses Shadowing technique, and every update will produce new root, the following excerpts from this PDF (it looks like implementing a ...
3
votes
1answer
203 views

Any good guides and/or advice for indexing my objects in zodb?

I'm going to be writing a general object class for use with zodb. These objects will add themselves to a btree index once they are persisted to the zodb object graph. I've never really worked with ...
3
votes
2answers
597 views

What data is actually stored in a B-tree database in CouchDB?

I'm wondering what is actually stored in a CouchDB database B-tree? The CouchDB: The Definitive Guide tells that a database B-tree is used for append-only operations and that a database is stored in a ...
2
votes
1answer
87 views

Are there any tools to estimate index size in MongoDB?

I'm looking for a tool to get a decent estimate of how large a MongoDB index will be based on a few signals like... how many documents in my collection the size of the indexed field(s) the size of ...
2
votes
4answers
3k views

What's the difference between B-Tree and GiST index methods (in PostgreSQL)?

I have been working on optimizing my Postgres databases recently, and traditionally, I've only ever use B-Tree indexes. However, I saw that GiST indexes suport non-unique, multicolumn indexes, in the ...
1
vote
1answer
176 views

disk access using a b-tree indexer

iv'e implemented a B+tree , my leaf nodes point to start of line(record) positions in a CSV file , my question is : my tree is designed to except a tree - ORDER value i.e. ( The number of Pointers ...
1
vote
0answers
106 views

Bitemporal data and SQL Server 2008

We have developed a Bitemporal schema and a perl library which takes care of making IUD on Bitemporal form. All the data is in SQL Server 2008 and the entire system is always busy with too many ...
1
vote
2answers
126 views

is there any efficient way to get node by key (better than linear hashing or btree)?

I'm looking for efficient algorithm for storing and fetching data by key. I've already read about Litvin linear dynamic hash and another methods, but still, i wonder is there some way to get (search, ...
1
vote
4answers
2k views

saving Btrees to a disk file and read it

I want to save a Btree(not sure a binary one) in a disk file. and then read it to the memory. some Level-order traversal may be a good way for a binary Btree. but if it is not a binary one. I build up ...
0
votes
3answers
67 views

Database Indexes B-Trees and Lists

Can anyone explain why databases tend to use b-tree indexes rather than a linked list of ordered elements. My thinking is this: On a B+ Tree (used by most databases), the none-leaf nodes are a ...
0
votes
3answers
67 views

Ordered Linked List vs B-Tree

If you have a b+ tree as an index, then this seems to be very similar to a ordered linked list. But the ordered linked list seem to have some advantages, such as not having to navigate a tree ...
0
votes
0answers
29 views

clustering and clustered indexes, different thing?

Recently, I am reading a paper about btree, here are excerption from page 11 Finally, some systems employ clustering (not clustered) indexes over heap files; their goal is to keep the heap file ...
0
votes
1answer
73 views

Databases: More questions about (B-Tree) indexes

I've been studying indexes and there are some questions that pother me and which I think important. If you can help or refer to sources, please feel free to do it. Q1: B-tree indexes can favor a ...
0
votes
1answer
80 views

questions about btree and index to database

I read tons of articles about btree theorem about database..thing there is always bewildering. assuming I have a table as described as follow: table userinfo: (user_id as primary key, username as ...