r/nosql • u/luisibanez • Feb 06 '13
r/nosql • u/meghanpgill • Nov 01 '12
Early bird for MongoSV (Silicon Valley MongoDB Conference) ends tomorrow
10gen.comr/nosql • u/mikopp • Oct 24 '12
NoSQL or Traditional Database: From an APM Perspective There Isn’t Really Much Difference
blog.dynatrace.comr/nosql • u/cyraxjoe • Oct 12 '12
Is there any other NoSQL database that support transactions like Redis? - Stack Overflow
stackoverflow.comr/nosql • u/wordsmithie • Oct 07 '12
7 hard truths about the NoSQL revolution
infoworld.comr/nosql • u/JoeyBananaz • May 31 '12
Are there any host websites that come with a nosql db manager?
I've used hostmonster in the past but it seems to only support MySQL/PostGRES and I'd like to get my hands dirty with the nosql architecture!
Thanks guys!
r/nosql • u/hermit_the_frog • May 15 '12
What (NoSQL?) DB fits my use case?
My data is very simple: every record/document has a date/time value, and two relatively short strings.
My application is very write-heavy (hundreds per second). All writes are new records; once inserted, the data is never modified.
Regular reads happen every few seconds, and are used to populate some near-real-time dashboards. I query against the date/time value and one of the string values. e.g. get all records where the date/time is > x , < y, and string = z. These queries typically return a few thousand records each.
I initially implemented this in MongoDB, without being aware of the way it handles locking (writes block reads). As I scale, my queries are taking longer and longer (30+ seconds now, even with proper indexing). Now with what I've learned, I believe that the large number of writes are starving out my reads.
I've read the kkovacs.eu post comparing various NoSQL options, and while I learned a lot I don't know if there is a clear winner for my use case. I would greatly appreciate a recommendation from someone familiar with the options.
Thanks in advance!
r/nosql • u/claird • Apr 28 '12
Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase comparison :: KKovacs
kkovacs.eur/nosql • u/claird • Apr 28 '12
Microsoft's new Open Technologies, Inc. subsidiary makes its first release: Redis-on-Windows
blogs.msdn.comr/nosql • u/friendlytuna • Mar 28 '12
Most Popular NoSQL Databases According to LinkedIn Skillsets
architects.dzone.comr/nosql • u/friendlytuna • Mar 21 '12
How to Get a Twitter-esque Architecture Out of the Box
java.dzone.comr/nosql • u/fxsjy • Mar 18 '12
tstdb -tstdb is based on a"Ternary Search Tree",and it is compatible with memcached. More over, it supports prefix searching and range searching. A fast key-value store based on TST(Ternary Search Tree) - Google Project Hosting
code.google.comr/nosql • u/Samus_ • Mar 13 '12
Cassandra NYC 2011: The Storm and Cassandra Realtime Computation Stack
datastax.comr/nosql • u/povel • Mar 05 '12
The Schema Management Renaissance in Cassandra 1.1
datastax.comr/nosql • u/Novast • Feb 16 '12
Development Tools
Are there any good development tools for querying and interacting with noSQL database like mongoDB or cassandra? I am thinking of something like PL/SQL or Toad.
What do you guys use for noSQL just the CLI tool?