7
votes
6answers
148 views
Reliable and efficient key--value database for Linux?
I need a fast, reliable and memory-efficient key--value database for Linux. My keys are about 128 bytes, and the maximum value size can be 128K or 256K. The database subsystem shou …
-1
votes
1answer
45 views
key - > value store with binary attachments
An extra requirement is that the attachments can be stored as a stream, as there might be potentially very large binaries that has to be saved. Videos etc.
I have looked at Voldem …
1
vote
1answer
51 views
Storing Directory Hierarchy in a Key-Value Data store?
What is a clean/efficient method for storing the directory Hierarchy/tree in a Key-Value database (in my case MongoDB but any of them).
For example a tree structure
- Cars
+ …
0
votes
1answer
49 views
Set the text and value of a ComboBoxItem
I'm trying to populate a ComboBox programatically. I am creating ComboBoxItems and would like to set their text (the text that is visible for the end-user) and their value (the obj …
3
votes
2answers
100 views
Understanding Key-Value stores
I'm trying to wrap my head around Key-Value stores like CouchDB and Cassandra. I understand why they're useful but as far as how they replace a RDBMS like MySql, I don't get it.
L …
1
vote
1answer
67 views
Can anyone explain scenarios where Project Voldermort or similar key value stores are useful?
I can see myself using Project Voldermort to cache results from a Traditional RDBMS query. But in this case, it provides almost no major advantage over other (Java) caching system …
23
votes
10answers
2k views
Is there a business proven cloud store / Key=>Value Database? (Open Source)
I have been looking for cloud computing / storage solutions for a long time (inspired by the Google Bigtable). But I can't find a easy-to-use, business-ready solution.
I'm search …
1
vote
1answer
199 views
Could my embedded key/value datastore eventually exceed an App Engine limit?
I have a BerkeleyDB key/value datastore embedded in my Google App Engine project, which does not use the Google Datastore.
When I upload the application to Google App Engine, the …
3
votes
1answer
231 views
Which is the most suitable Key-Value Store for a RDBMS background person?
Is there a distinct winner among all the key-value stores? Cassandra, MongoDB, CouchDB? and do they all follow some central guidelines? or they all have their own say in defining t …
4
votes
3answers
123 views
When to use a key-value data store vs. a more traditional relational DB?
When would one choose a key-value data store over a relational DB? What considerations go into deciding one or the other? When is mix of both the best route? Please provide example …
1
vote
2answers
212 views
What is happening to such distributed in-memory cloud databases as Hazelcast and Scalris if there is more Data to store than RAM in the cluster?
What is happening to such distributed in-memory cloud databases as
Hazelcast
Scalaris
if there is more Data to store than RAM in the cluster?
Are they going to Swap? What …
0
votes
4answers
571 views
Scalaris: P2P key-value database - your opinion please.
Why wouldn't you use Scalaris?
3
votes
2answers
147 views
Performance-oriented design of a graph-based (key/value) database
I am in the preparation phase of the design a graph-based (or key-value) database library for C++ which many here will find similar to projects such as http://neo4j.org/.
Since th …
4
votes
3answers
192 views
tuple list from dict in python
How can I obtain a list of key-value tuples from a dict in python?
Thanks
1
vote
6answers
728 views
Key value pairs in C# Params
I'm looking for a way to have a function such as:
myFunction({"Key", value}, {"Key2", value});
I'm sure there's something with anonymous types that would be pretty easy, but I'm …
