Hacker News new | ask | show | jobs
by bhz 4130 days ago
Have you tried redis?

http://try.redis.io/

1 comments

I love redis! My first proof of concept of GUN used redis as the persistence/storage layer. But I moved off of it since I wanted a fully embedded solution.

Data wise the difference is that Redis doesn't support graphs. But you could easily build that on top of Redis, so you could argue GUN is just graph data ontop of Redis (well, not anymore) with a conflict resolution algorithm baked in.

I'll have to give Gun a go when I have the chance. Thank you for providing the contrast.