13
votes
3answers
721 views
Non-Relational Database Design
I'm interested in hearing about design strategies you have used with non-relational "nosql" databases - that is, the (mostly new) class of data stores that don't use traditional re …
5
votes
6answers
229 views
Alternatives to traditional relational databases for activity streams
I'm wondering if some other non-relational database would be a good fit for activity streams - sort of like what you see on Facebook, Flickr (http://www.flickr.com/activity), etc. …
4
votes
3answers
144 views
What NoSQL solutions are out there for .NET
Which have the best integration with C#?
Which integrate with linq?
Also which would be easiest to integrate into an application?
3
votes
3answers
350 views
What’s The Best Practice In Designing A Cassandra Data Model?
And what are the pitfalls to avoid? Are there any deal breaks for you? E.g., I've heard that exporting/importing the Cassandra data is very difficult, making me wonder if that's go …
2
votes
1answer
33 views
App Engine Datastore + social app - structure & search an N-D sparse matrix
IIRC, each Facebook user can have 5000 friends. The average is 130, but the maximum is much higher. Each of those friends can have 'liked' zero or more entities drawn from a set of …
2
votes
2answers
54 views
What is the benefit of using a “document-oriented DBMS”?
I must be missing something, because everything I've seen so far suggests that it isn't any more interesting than a single table for storing blobs and a second table for tags that …
2
votes
4answers
147 views
Document based database for .NET
Hi,
I would like to use some kind of nosql database in my web application which is written in asp.net mvc , but cannot find anything useful. I have a looked at MongoDB and CouchDB …
2
votes
6answers
584 views
What is NoSQL, how does it work, and what benefits does it profide?
I've been hearing things about NoSQL and that it may eventually become the replacement for SQL DB storage methods due to the fact that DB interaction is often a bottle neck for spe …
1
vote
2answers
35 views
what patterns allow for object persistance using sql and nosql databases?
With the rise of the nosql movement we see different options for storing objects. Are there object persistence patterns that can handle both sql and nosql backends and allow to eas …
1
vote
1answer
71 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 …
1
vote
5answers
138 views
Document databases/Key-value stores for use with .Net projects
Are there any document databases and/or key-value stores (something like Project Voldemort, MongoDB, etc.) that work well with .Net projects? Most of the options I've looked at so …
1
vote
8answers
349 views
What nosql means? can someone explain it to me in simple words?
in this post Stack Overflow Architecture i read about something called nosql, i didn't understand what it means, and i tried to search on google but seams that i can't get exactly …
1
vote
2answers
200 views
Which schemaless datastores provide good performance?
I've recently written a web app that uses couchdb. I like couchdb and it suited the app - which has a lot of dynamic behaviour and simply pulls JSON directly from couchdb. Being ab …
0
votes
1answer
20 views
Riak on Windows
I want to play with Riak http://riak.basho.com/ or a least get it running on a Windows system. I have downloaded the source code and compiled it but that's where I get stuck, how d …
0
votes
1answer
60 views
How to run this query in mongodb?
My doc has an array field Keys
Keys1 and Keys2 are two arrays
I want all the docs where Keys contains any value in Keys1 AND any value in Keys2
Any advice?
Thanks
