Hacker News new | past | comments | ask | show | jobs | submit login

Lack of UX & no ACID compliance so I wouldn't use it for anything in production.



I was curious about the use of Redis as a permanent data store, too. Is this a common use case for people? I've only used it for a data cache, where the actual values are backed by a relational data store and some logic that calculates expensive numbers.


Redis is fully durable if you use append-only files with the "appendfsync always" option set. http://oldblog.antirez.com/post/redis-persistence-demystifie...


Durable != ACID

You can still create an inconsistent state in Redis easily, even it persists well.


As far as I know, consistency in ACID just means that the database enforces any constraints that have been defined. Since redis doesn't allow constraints to be defined, doesn't that technically make it consistent, in a vacuous sort of way?

You could also view redis's data types as a form of constraint. Using a set instead of a list achieves the same purpose as using UNIQUE in SQL.


what do you mean no ACID compliance ? the db used? And can you be more specific about what's wrong with the UX?


Correct, regardless of what redis tries to sell itself as it is not a database I would trust my data with long term. As far as UX goes the demo site was incredibly hard to use, it doesn't lead your eyes trough a path of workflow, not to mention that narrow vertical columns are a highly inefficient way to digest data.


Is an online forum an application where you have to worry about trusting your database? If you lose a forum post now and then, it's not a good thing, certainly, but depending on the forum, it could be an acceptable tradeoff.


Considering that a forum is also not the most high-traffic kind of application, I do not see the reason why you should use a high-performance K/V-store (with all the tradeoffs coming with it).




Join us for AI Startup School this June 16-17 in San Francisco!

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: