Live data from Hacker News

Toy Store: ORM for Riak, Redis, Cassandra, Memcached, darn near anything

thechangelog.com

11–20 of 21 posts

Re: Toy Store: ORM for Riak, Redis, Cassandra, Memcached, darn near anything

#11
I'm not sure I quite get this.

The code looks great. The mapping features seem strong (thanks in part to the power of ActiveModel). However, by restricting the adapter interface to a simple key/value store, don't you lose access to many of the features that make each backend distinct?

I think Redis, Cassandra, MongoDB, etc. are great, but to me it't the differences amongst them which are interesting, not the similarities.

Re: Toy Store: ORM for Riak, Redis, Cassandra, Memcached, darn near anything

#12
post #9

if you need a ORM for key/value storage, you're doing it (very) wrong

Exactly. I'm not sure why this is necessary. If you want to store rich objects, just serialize them and create your indexes as necessary.

Anyways, I'll definitely check it out. Maybe I'm missing something.

Re: Toy Store: ORM for Riak, Redis, Cassandra, Memcached, darn near anything

#13
post #11

I'm not sure I quite get this. The code looks great. The mapping features seem strong (thanks in part to the power of ActiveModel). However, by restricting the adapter interface to a simple key/value store, don't you lose access to many of the features that make each backend distinct? I think Redis, Cassandra, MongoDB, etc. are great, but to me it't the differences amongst them which are interesting, not the similari…

New does travel quick. I was just reading about this thing this morning.

http://railstips.org/blog/archives/2011/01/27/data-modeling-...

So John in the above link was talking about how when you scale, you end up looking at bottlenecks, which are usually slow data accesses, and moving them into some sort of key-value store--that usually are based on a key-value access pattern. So by the time you're well into scaling your app, you noticed that much of your data access has turned into limiting yourself to doing key lookups to attain the performance you need.

Since (according to his experiences scaling) most of the performance bottlenecks seem to have this pattern, he asked, "what if you restricted your data access to just using key-value pairs from the very beginning?" That way you avoid some of the data access headaches later on. In answering that question, this is what they got.

Re: Toy Store: ORM for Riak, Redis, Cassandra, Memcached, darn near anything

#17
post #9

if you need a ORM for key/value storage, you're doing it (very) wrong

If it's simple "stuff it in, pull it out" stuff, sure. Having things like validations and callbacks and association sugar and the like are really nice, though, in cases beyond the very simple. I think the point is to let you focus more on writing business logic, and less on mucking about with your underlying datastore. If it works as promised, then it could very certainly result in a productivity gain.

Re: Toy Store: ORM for Riak, Redis, Cassandra, Memcached, darn near anything

#18
post #12
post #9

if you need a ORM for key/value storage, you're doing it (very) wrong

Exactly. I'm not sure why this is necessary. If you want to store rich objects, just serialize them and create your indexes as necessary. Anyways, I'll definitely check it out. Maybe I'm missing something.

The scale of the application affects how much you can really do just by adding indexes to tables and throwing more hardware at it.

At a certain point, servers are only so fast and disks only so large and fast.

Re: Toy Store: ORM for Riak, Redis, Cassandra, Memcached, darn near anything

#19

And it's ActiveModel-based! Hallelujah! For those not of a rails persuasion, ActiveModel is basically all the non-datastore stuff abstracted out from ActiveRecord, rails' ORM. So, this Toy Store lib will share all its validation, accessor etc. apis with ActiveRecord and so will already automatically be compatible with the huge range of rails libraries out there. A good example is simple_form, a rails gem for doing lo…

abstraction abstraction abstraction

Re: Toy Store: ORM for Riak, Redis, Cassandra, Memcached, darn near anything

#20
post #13
post #11

I'm not sure I quite get this. The code looks great. The mapping features seem strong (thanks in part to the power of ActiveModel). However, by restricting the adapter interface to a simple key/value store, don't you lose access to many of the features that make each backend distinct? I think Redis, Cassandra, MongoDB, etc. are great, but to me it't the differences amongst them which are interesting, not the similari…

New does travel quick. I was just reading about this thing this morning. http://railstips.org/blog/archives/2011/01/27/data-modeling-... So John in the above link was talking about how when you scale, you end up looking at bottlenecks, which are usually slow data accesses, and moving them into some sort of key-value store--that usually are based on a key-value access pattern. So by the time you're well into scaling y…

The same tactic was used by Google for Google App Engine - "if it doesn't scale then we're not including it as a feature". This is why so much of Google App Engine's documentation focuses on scaling [1]. Depending on who you ask this is genius or folly.

By forcing yourself into this tactic you end up having to consider all the scaling complexity in the prototyping stage before your app has even proven itself potentially successful. If your app becomes wildly popular then the combination of your early work and Google's behind the scene scaling means there are far less problems for you to worry about.

My major concern with this method is that people already focus far too much on premature optimizations before they even know where the real bottlenecks are in their application. If premature optimization leads to burn out or less features then it's a poison to our projects and should be avoided.

[1] http://code.google.com/appengine/articles/scaling/overview.h...

Post reply on HN