The key value store we ignored (Postgresql)
blog.creapptives.com
The key value store we ignored (Postgresql)
1–10 of 65 posts
Re: The key value store we ignored (Postgresql)
#2It's not so great if you start using something and one year later see that the original authors lost interest and move on, leaving you with 10k lines of code that depend on a pray-for-no-bugs unsupported piece of software.
Re: The key value store we ignored (Postgresql)
#3Re: The key value store we ignored (Postgresql)
#4Re: The key value store we ignored (Postgresql)
#5Re: The key value store we ignored (Postgresql)
#6228MB of data is nothing, it fits in RAM of any machine. What would the examples in this blog post look like if it was 228GB of data spread across 10 servers instead? How would you grow/shrink such a cluster? How would you perform a query that cuts across servers and aggregates data from some of them? How would you replicate data across multiple servers?
Re: The key value store we ignored (Postgresql)
#7Re: The key value store we ignored (Postgresql)
#8The main selling point of the various NoSQL products out there today isn't the schemaless storage, instead it's the ability to grow beyond a single server that's compelling. 228MB of data is nothing, it fits in RAM of any machine. What would the examples in this blog post look like if it was 228GB of data spread across 10 servers instead? How would you grow/shrink such a cluster? How would you perform a query that cu…
I am in no way substituting or saying 228MB is enough data! I would rather hate MongoDB for being RAM hungry and storing same 115k tweets in Gigabytes of memory (256MB is just like a started of 100 Course meal for MongoDB). Again Facebook ultimately prefers his data to go to MySQL and they have largest 600 shard for a reason!
Re: The key value store we ignored (Postgresql)
#9Anybody using this with rails? https://github.com/softa/activerecord-postgres-hstore
http://blog.documentcloud.org/blog/2011/05/arbitrary-metadat...
... which can then be used to power custom indexes of particular collections of documents, like this one:
http://www.nytimes.com/interactive/2011/12/02/us/oil-and-gas...
The fun bit being, that in both Postgres and Solr, you can still run a precise search (including joins for access control, sharing, and boolean full text clauses) with a single query because the HStore keys and values are indexed.
Re: The key value store we ignored (Postgresql)
#10[deleted]