Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

121
votes
11answers
6k views

What scalability problems have you solved using a NoSQL data store?

NoSQL refers to non-relational data stores that break with the history of relational databases and ACID guarantees. Popular open source NoSQL data stores include: Cassandra (tabular, written in ...
16
votes
7answers
6k views

Suggest a simple NoSQL database for java project

I am developing a simple internal use application with an intended user base of around 100 people. The application does a lot of reads and very few writes. The dataset size is fairly small and we do ...
11
votes
9answers
2k views

Need a distributed key-value lookup system

I need a way to do key-value lookups across (potentially) hundreds of GB of data. Ideally something based on a distributed hashtable, that works nicely with Java. It should be fault-tolerant, and ...
11
votes
4answers
3k views

Pro's of databases like BigTable, SimpleDB

New school datastore paradigms like Google BigTable and Amazon SimpleDB are specifically designed for scalability, among other things. Basically, disallowing joins and denormalization are the ways ...
10
votes
4answers
1k views

What's the attraction of schemaless database systems?

I've been hearing a lot of talk about schema-less (often distributed) database systems like MongoDB, CouchDB, SimpleDB, etc... While I can understand they might be valuable for some purposes, in most ...
9
votes
3answers
210 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
3answers
993 views

Pros/Cons of storing serialized hash vs. key/value database object in ActiveRecord?

If I have several objects that each have basically a Profile, what I'm using to store random attributes, what are the pros and cons of: Storing a serialized hash in a column for a record, vs. ...
7
votes
2answers
401 views

How would you implement a revision control system for your models in your prefered db paradigm?

I found out that RCS for models is an interesting problem to solve in the context of data persistence. They are several solution using the django ORM to achieve this django-reversion and AuditTrail ...
7
votes
6answers
1k views

Writing a key-value store

I am looking to write a Key/value store (probably in python) mostly just for experience, and because it's something I think that is a very useful product. I have a couple of questions. How, in ...
6
votes
1answer
2k views

Storing object properties in redis

Lets say I have an object (User) which consists of a few properties (ID, Name, Surename, Age). Which way is better to store this object in redis? store each property value in dedicated key, for ...
6
votes
3answers
1k views

Why are key value pair noSQL db's faster than traditional relational DBs

It has been recommended to me that I investigate Key/Value pair data systems to replace a relational database I have been using. What I am not quite understanding is how this improves efficiency of ...
5
votes
6answers
2k views

Looking for a lightweight java-compatible in-memory key-value store

Berkeley DB would be the best choice probably but I can't use it due to licensing issues. Are there any alternatives?
4
votes
1answer
264 views

Lightweight Javascript DB for use in Node.js

Anybody know of a lightweight yet durable database, written in Javascript, that can be used with Node.js. I don't want the 'weight' of (great) solutions like Mongo or Couch. A simple, in memory JS ...
4
votes
2answers
286 views

Simple latitude/longitude + integer database?

Is there a fast, persistent database for storing a latitude, longitude, and integer value for quick geo-spacial lookups? The idea is that I have lots of ID's of different things and I want to search ...
4
votes
2answers
311 views

How are document-based datastores (e.g., Mongo) implemented vs a key-value store?

I've been reading a bit lately on document-based databases vs. key-value stores (Here's a good overview Difference between Document-based and Key/Value-based databases? ) and I'm having trouble ...
4
votes
3answers
145 views

Key-value store recommendation

I need a recommendation for a key-value store. Here's my criteria: Doesn't have to be persistent but needs to support lots of records (records are small, 100-1000 bytes) Insert (put) will happen ...
4
votes
1answer
407 views

How to store array of hashes in redis

I want to store array of hashes in redis , what is best way to code it ?
4
votes
6answers
238 views

Computing token counters on huge dataset

I need to go over a huge amount of text (> 2 Tb, a Wikipedia full dump) and keep two counters for each seen token (each counter is incremented depending on the current event). The only operation that ...
4
votes
3answers
463 views

Looking for an easy to use embedded key-value store for C++

I need to write a C++ application that reads and writes large amounts of data (more than the available RAM) but always in a sequential way. In order to keep the data in a future proof and easy to ...
3
votes
1answer
87 views

Redis Replication Issue

I have a Redis Master node which will be populated by a master application. Then i will have multiple slaves of this Redis node which might be at different locations geographically. These nodes will ...
3
votes
2answers
71 views

good (noSQL?) database for physical measurements

We're building a measurement system that will eventually consist of thousands of measurement stations. Each station will save around 500 million measurements consisting of 30 scalar values over its ...
3
votes
3answers
225 views

Does CouchDB have an equivalent to Redis' expire?

Does CouchDB have an equivalent to expire like in Redis? Example for Redis expire: #!/usr/bin/env python import redis redis_server = redis.Redis(host='localhost',port=5477,db=0) r.set('cat','meow') ...
3
votes
1answer
147 views

What are the object requirements (limitations) for storing an object in RavenDB

I am researching RavenDB for use in a system (mostly as a persistant key-value cache) and need to know what are the limitations of the actual data that can be stored. The documentation states "The ...
3
votes
3answers
270 views

NoSQL database and many semi-large blobs

Is there a NoSQL (or other type of) database suitable for storing a large number (i.e. >1 billion) of "medium-sized" blobs (i.e. 20 KB to 2 MB). All I need is a mapping from A (an identifier) to B (a ...
3
votes
4answers
359 views

Smart way to evaluate what is the right NoSQL database for me?

There appears to be a myriad of NoSQL databases available these days: CouchDB MongoDB Cassandra Hadoop There's also a boundary between these tools and tools such as Redis that work as a memcached ...
3
votes
2answers
695 views

What is the purpose of colons within Redis keys

I'm learning how to use Redis for a project of mine. One thing I haven't got my head around is what exactly the colons are used for in the names of keys. I have seen names of key such as these: ...
3
votes
1answer
289 views

How does CouchDB perform for a regularly updated dataset?

I am planning on using CouchDB on a project. But as the querying mechanism involves writing views (which are a lot like indexes on regular RDMBMS's) I was wondering, if the document database keeps ...
3
votes
3answers
238 views

Need a distributed key-value lookup system in PHP

This question asks for one in java, what's the best candidate in PHP? BTW,does the following establish: distributed key value store == distributed cache ?
3
votes
3answers
1k views

How do you mix SQL DB vs. Key-Value store (i.e. Redis)

I'm reviewing my code and realize I spend a tremendous amount of time taking rows from a database, formatting as XML, AJAX GET to browser, and then converting back into a hashed javascript ...
3
votes
3answers
1k views

What are the advantages and disadvantages of using a search engine as a key value store?

Given a search engine like Lucene and a set of XML documents which need to be fully preserved, what are the advantages and disadvantages of using the search engine as key value store for returning XML ...
2
votes
1answer
35 views

What are the uses of a key-value database?

I've heard about highly scalable key-value databases, like Amazon DynamoDB and Kyoto Cabinet. But I can't see an use for everyday problems. Ex.: Suppose I have a "post object", which has an id, a ...
2
votes
3answers
60 views

What's the good choice for handling with real-time data in memory?

Clients send some real time data to the server. The server will do simple analysis with these data. It only finds data from a specific range, or sort some data. Most of data will be abandoned after ...
2
votes
2answers
55 views

SplObjectStorage and sugary syntax in PHP

Quick one; I doubt it's possible, but is there any way to take advantage of the array($key => $value); syntax of PHP with regard to SplObjectStorage objects? What I mean is, is there any such way ...
2
votes
1answer
100 views

How to store key-value data for cocoa apps within the app itself?

I have an info dictionary that contains user data. Currently, it is written to an xml file in the same directory as the app. However, I'm pretty certain cocoa allows me to write this xml file into the ...
2
votes
2answers
110 views

Is Cassandra suitable for a system that requires frequent queries (reads/writes)?

I'm developing a web application that requires a lot of users to be in the same "universe", where a lot of frequent queries will happen: frequent lookups of clients that are in a certain box area ...
2
votes
1answer
1k views

Want to store in Redis via Node.js

I want to store a hash/JSON data of users in Redis and want to add the user in users hash the user data like this. For example, users={}; When user rahul logs in then users will become. users={ ...
2
votes
1answer
438 views

what is the best mechanism for a persistent key-value store on android (with large values)

I want to use a fast key-value store on an Android device where the values are image bitmaps. The store should be backed up by disk and provide some caching minimizing disk IO. Multi-threaded access ...
2
votes
0answers
309 views

Range query on kyoto cabinet using Java API

I am interested in using kyotocabinet key-value store and I want to preform a range query preferably with a bulk interface (returning byte array). I checked kyoto cabinet's Java API and I couldn't ...
2
votes
4answers
916 views

Alternatives to Berkeley DB (Java)

Berkeley DB (JE) licensing may be a deal killer. I have a Java application going to a small set of customers but as it is a desktop application, my price cannot support individual instance licensing. ...
2
votes
2answers
248 views

Redis - handling changes to data structures

I have been experimenting with Redis, and I really like the scalability that it brings to the table. However, I'm wondering how to handle changes to data structures for a system that's already in ...
2
votes
2answers
268 views

Is there an in-memory key/value store that can notify an external entity of a change?

I have read about in-memory key/value stores but have never actually utilized one. The first that come to my uneducated mind are CouchDB and memcached (I know CouchDB isn't necessarily in-memory, but ...
2
votes
3answers
550 views

Scalability of Using MySQL as a Key/Value Database

I am interested to know the performance impacts of using MySQL as a key-value database vs. say Redis/MongoDB/CouchDB. I have used both Redis and CouchDB in the past so I'm very familiar with their ...
2
votes
8answers
677 views

Is there a C++ cross platform key/value API or library for C++?

We want to persist some user settings int he GUI part of our code. I used to do Win32 programming exclusively and the typical way this was done was with registry settings. I assume that this should ...
2
votes
1answer
673 views

What happens to a Redis data store if the data exceeds available ram?

What happens to a Redis data store if the data exceeds available ram?
2
votes
1answer
173 views

key value stores for extendable objects

http://www.infoq.com/presentations/newport-evolving-key-value-programming-model is a video about KV stores, and the whole premise is that redis promotes a column-based style for storing the attributes ...
1
vote
1answer
39 views

Can LevelDB snapshots survive a close of the database?

I'm wondering if the 'snapshot' facility of the LevelDB library can create a snapshot reference that could be saved even after a close of the open database object (and thus reused on a subsequent ...
1
vote
2answers
74 views

Embeddable disk-based key-value store

We are working on a project, that will be distributed using single jar file. We have a need for some key-value store with following properties: Embeddable into our jar file, so no additional ...
1
vote
2answers
90 views

fast large scale key-value store for a php program

I'm working on a full text index system for a project of mine. As one part of the process of indexing pages it splits the data into a very, very large number of very small pieces. I have gotten the ...
1
vote
1answer
40 views

What's the differences between Object Storage and Key-Value Database?

It seems a same thing from users aspect.
1
vote
4answers
94 views

Perform actions on dictionary values that match items in a list?

I have a dictionary with 46,000 key:value pairs where each key has a 3 item list as values: my dict = {key1: ['A', 'B', 'C'], key2: ['B', 'A', 'G'], key3: ['Z', 'H', 'I']......} I have a list with ...

1 2