Live data from Hacker News

Ask HN: What are the best technologies you've worked with this year?

news.ycombinator.com

1–10 of 86 posts

Re: Ask HN: What are the best technologies you've worked with this year?

#5
Tokyo Cabinet (key value storage: removed the "R" and "M" from "ORM", managed to get an object from disk to the client with the object being opaque to the server, cutting deserialization/serialization overhead down, implemented indexes to keep track of keys and got more of an idea of what MySQL does behind the scenes).

Re: Ask HN: What are the best technologies you've worked with this year?

#9
post #5

Tokyo Cabinet (key value storage: removed the "R" and "M" from "ORM", managed to get an object from disk to the client with the object being opaque to the server, cutting deserialization/serialization overhead down, implemented indexes to keep track of keys and got more of an idea of what MySQL does behind the scenes).

Isn't this similar to what berkley db does?

EDIT: Genuine curiosity, not trying to make a point.

Re: Ask HN: What are the best technologies you've worked with this year?

#10
Redis. It's a very different kind of database - being able to perform 80,000 set or list operations a second enables a whole bunch of solutions to otherwise difficult problems (real time stats stuff, writing in to activity streams etc). SRANDMEMBER on its own is invaluable since picking a random item from a regular relational database using ORDER BY RAND() tends to kill it stone dead under load.
Post reply on HN