|
|
|
|
|
by hardwaresofton
1834 days ago
|
|
I'm not trying to get on people who are using redis as a cache (for photos, or any other ephemeral data). The idea I was trying to get at was using redis to store data traditionally reserved for OLTP workloads. > Pretty sure we all can think of some pretty high profile examples of NoSQL + structured data working very very well at scale. Well that's the thing, you very rarely hear of companies who cursed their decision early on to use NoSQL when they realized that their data was structured but in 20 different ways over the lifetime of the product. Some datasets only need light structure (key/value, a loosely defined document, schema-included documents), and other things should probably have a schema and be stored in a database with a tight grip on that schema and data consistency/correctness. Please don't use redis in that latter case. |
|