Tagged Questions

Key-Value represents a pair of a term and it's corresponding relative description (or value). The concept of key value, primarily, is applied in modern NoSQL databases for representing a storage mechanism. Key-Value is also a way to assign attributes and values to NSObject based instances in Cocoa framework (Related: Objective-C).

learn more… | top users | synonyms

31
votes
12answers
3k 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 searching a simple, fault ...
26
votes
6answers
19k views

for each loop in objective c for accessing NSMutable dictionary

I am finding some difficulty in accessing mutable dictionary keys and values in Objective-C. Suppose I have this: NSMutableDictionary *xyz=[[NSMutableDictionary alloc] init]; I can set keys and ...
22
votes
7answers
7k views

Entity Attribute Value Database vs. strict Relational Model Ecommerce question

It is safe to say that the EAV/CR database model is bad. That said, Question: What database model, technique, or pattern should be used to deal with "classes" of attributes describing e-commerce ...
18
votes
9answers
2k 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 shouldn't use more than ...
15
votes
4answers
3k 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 + Audi + BMW ...
9
votes
3answers
196 views

Key-value stores for medium to large values

We have a system that stores (single-digit) millions of images, varying in size from 8KB to 500KB, median around 15KB, average 30KB. The total data set is currently around 100GB. We want to access the ...
8
votes
4answers
5k views

Java - How to create new Entry (key ,value)

I'd like to create new item that similarly to Util.Map.Entry i.e. that will already contain the structure key,value The problem is that I can't use Map.Entry itself because apperently it's a ...
8
votes
2answers
425 views

Fastest and most efficent way of seaching a key-value pair in Java?

DISCLAIMER: THIS QUESTION WAS NOT MEANT TO BE ARGUMENTATIVE!!!!!!! What is fastest and less memory draining way of searching a key-value pair? I will be storing items in a key-value like relation ...
8
votes
1answer
1k views

Suggest Cassandra data model for an existing schema

I hope there's someone who can help me suggest a suitable data model to be implemented using nosql database Apache Cassandra. More of than I need it to work under high loads and large amounts of data. ...
7
votes
3answers
121 views

Java disk-based key-value storage

Is there an efficient Java implementation of a filesystem-based key-value storage with the following features: Store, overwrite, and retrieve byte arrays by a unique ID (may be assigned by the ...
7
votes
2answers
3k views

Atomic transactions in key-value stores

Please excuse any mistakes in terminology. In particular, I am using relational database terms. There are a number of persistent key-value stores, including CouchDB and Cassandra, along with plenty ...
6
votes
4answers
1k views

iPhone - How to detect if a key exists in NSUserDefaults standardUserDefaults

Using NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];, I use calls like BOOL boolFromPrefs = [defaults boolForKey:@"theBoolKey"]; To get a saved BOOL value. If the key is not ...
6
votes
11answers
930 views

dynamically horizontal scalable key value store

Is there a key value store that will give me the following: Allow me to simply add and remove nodes and will redstribute the data automatically Allow me to remove nodes and still have 2 extra data ...
6
votes
3answers
2k 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 examples if you can.
6
votes
4answers
2k views

tuple list from dict in python

How can I obtain a list of key-value tuples from a dict in python? Thanks
6
votes
2answers
605 views

Tokyo Cabinet & .Net

Is it possible to use Tokyo Cabinet with any of the .Net Languages, preferably VB10? How about Tokyo Tyrant? Preferably without going through LUA/Ruby or other wrappers.. If there's no easy way in ...
6
votes
6answers
6k views

Java Class that implements Map and keeps insertion order?

I'm looking for a class in java that has key-value association, but without using hashes. Here is what I'm currently doing: Add values to a Hashtable Get an iterator for the Hashtable.entrySet(). ...
5
votes
6answers
213 views

Best C language key/value database around for massive amounts of entries

I am trying to create a key/value database with 300,000,000 key/value pairs of 8 bytes each (both for the key and the value). The requirement is to have a very fast key/value mechanism which can query ...
5
votes
4answers
855 views

Is there a NoSQL / key-value store abstraction library like there is JDBC is for databases?

I have used many SQL abstraction libraries, such as ODBC, JDBC, and ActiveRecord. What are the abstraction options in the NoSQL / key-value store world? I am mostly asking this so that if I choose a ...
5
votes
1answer
4k 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 object that I will ...
5
votes
2answers
684 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. Let's say this is my ...
5
votes
4answers
3k views

Key Value Database For Windows?

Other than MongoDB and Memcached, what key-value stores run on Windows? Most of the ones I've seen seem to only run on Linux (Hypertable, Redis, Lightcloud). Related links: ...
5
votes
4answers
485 views

Key-Value based databases, can someone explain to me how to use them practically?

There seems to be a big push for key/value based databases, which I believe memcache to be. Is the value usually some sort of collection or xml file that would hold more meaningfull data? If yes, is ...
4
votes
3answers
137 views

Storing a list of 1 million key value pairs in python

I need to store a list of 1 million key-value pairs in python. The key would be a string/integer while the value would be a list of float values. For example: ...
4
votes
1answer
71 views

how to store key-value as well as value-key in Python?

I have this somewhat big data structure that stores pairs of data. The individual data is tiny and readily hashable, and there are something like a few hundred thousand data points in there. At ...
4
votes
3answers
295 views

Logging data without using a normal SQL database?

I am currently logging every "failure" on my site (login/signup/etc) to a database so I can monitor what is giving my users a hard time - or which ips/users are doing suspicious things. However, I ...
4
votes
2answers
310 views

Transactional, in-memory, object/key/value storage library?

I have a C++ application whose in-memory data set consists of a set of objects, each of which has a key/value set attached. Objects and keys are referred to by an int id, and values are always ...
4
votes
8answers
664 views

C++ in-memory Key-Value stores

I'm looking for suggestions regarding in-memory key-value store engines or libraries, that have C++ interfaces or that are written in C++. I'm looking for solutions that can scale without any ...
4
votes
9answers
298 views

Is this API too simple?

There are a multitude of key-value stores available. Currently you need to choose one and stick with it. I believe an independent open API, not made by a key-value store vendor would make switching ...
4
votes
1answer
1k 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 their APIs. I'm ...
3
votes
1answer
50 views

Hadoop : Tools for visualizing key value data and files for development

Are there any simple, easily launched java tools for visualizing key/value data from map reduce job directories ? Specifically i want to browse a 20-job map reduce workflow , cliicking on individual ...
3
votes
5answers
105 views

How do you map an array [key1,val1] to a hash { key1 => val1} in perl?

The problem is I have an array that has the key value pairs as elements in an array and I have to split them up somehow into key => value pairs in a hash. my first attempt at this works, but I think ...
3
votes
2answers
134 views

Go map of functions

I have Go program that has a function defined. I also have a map that should have a key for each function. How can I do that? I have tried this, but this doesn't work. func a(param string) { } m ...
3
votes
3answers
363 views

BerkeleyDB write performance problems

I need a disk-based key-value store that can sustain high write and read performance for large data sets. Tall order, I know. I'm trying the C BerkeleyDB (5.1.25) library from java and I'm seeing ...
3
votes
4answers
473 views

PHP - split String in Key/Value pairs

I have a string like this: key=value, key2=value2 and I would like to parse it into something like this: array( "key" => "value", "key2" => "value2" ) I could do something like ...
3
votes
3answers
295 views

Best-performing method for associating arbitrary key/value pairs with a table row in a Postgres DB?

I have an otherwise perfectly relational data schema in place for my Postgres 8.4 DB, but I need the ability to associate arbitrary key/value pairs with several of my tables, with the assigned keys ...
3
votes
3answers
109 views

PHP question about multidimensional array

My array looks like this: Array ( [Bob] => Red [Joe] => Blue ) But it could be any number of people, like this: Array ( [Bob] => Red [Joe] => Blue [Sam] => Orange [Carla] => ...
3
votes
3answers
77 views

What is the type of “keys” in JavaScript?

I bumbed into one of those moments when I just lose the focus and start wondering on a silly question: var a = { b: "value" } What is the typeof 'b' and I don't mean the typeof "value", but the ...
3
votes
4answers
3k views

append multiple values for one key in Python dictionary

I am new to python and I have a list of years and values for each year. What I want to do is check if the year already exists in a dictionary and if it does, append the value to that list of values ...
3
votes
2answers
857 views

Interesting AS3 hash situation. Is it really using strict equality as the documentation says?

AS3 Code: import flash.utils.Dictionary; var num1:Number = Number.NaN; var num2:Number = Math.sqrt(-1); var dic:Dictionary = new Dictionary( true ); trace(num1); //NaN trace(num2); //NaN dic[num1] = ...
3
votes
3answers
545 views

What is the easiest way to simulate a database table with an index in a key value store?

What is the easiest way to simulate a database table with an index in a key value store? The key value store has NO ranged queries and NO ordered keys. The things I want to simulate (in order of ...
3
votes
4answers
1k views

Best way to use a PostgreSQL database as a simple key value store

I am being required to use a postgreSQL database and it will replace my current use of berkeleyDB. Although; I realize this is not an ideal situation, it is beyond my control. So the question is... ...
3
votes
3answers
632 views

Is there a nosql store that also allows for relationships between stored entities?

I am looking for nosql key value stores that also provide for storing/maintaining relationships between stored entities. I know Google App Engine's datastore allows for owned and unowned relationships ...
3
votes
2answers
429 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 such as EHcache ...
3
votes
2answers
691 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 this is a very early ...
3
votes
3answers
384 views

What is the best way to deal with collections (lists or sets) in key-value storage?

I wonder what can be an effective way to add/remove items from a really large list when your storage is memcached-like? Maybe there is some distributed storage with Java interface that deals with this ...
2
votes
1answer
39 views

OBJ-C: using valueForKeyPath when key is not a string

I have an NSArray which contains NSDictionary objects with keys that are NSNumber objects. I would like to calculate the max value using valueForKeyPath. If I were using strings in the following ...
2
votes
1answer
26 views

Can integer keys / values be stored in LevelDB?

I have searched for key value stores that support integer keys and integer values. LevelDB seems a good option, though I can't find any information on whether integer values/keys are supported
2
votes
4answers
95 views

What's the different between std::multimap<key, value> and std::map<key, std::set<value> >

I found that they have one key and multiple values which is unique.
2
votes
1answer
104 views

Converting anonymous type to List<KeyValuePair>

I have a method requiring the following: public static List<ParetoElement> ParetoBuildBySum(List<KeyValuePair<string, double>> inputData) I have the following linq query and ...

1 2 3 4 5