Redis in Cloud Foundry
NoSQL Databases Redis is a distinguished member of a whole new category of databases called NoSQL, which stands for "Not Only" SQL. As we will see in a moment the NoSQL family is by no means a uniform one. There is in fact lots of diversity but in general they have the following characteristics: They have no fixed schema. You can even modify it as you go along They are more scalable. How big is the largest Oracle database you have come across? 100TB and 4 nodes? Some NoSQL databases can scale to PB and beyond They are able to handle unstructured data And they are usually cheaper to manage ... btw, I am not questioning your Oracle DBA's salary All this sounds great, but everything in life has a trade-off. What are the downsides? They can have duplicated data Most of them offer "eventual" consistency, ie during a "hopefully" short period of time a record is likely to have different values in different nodes ... I can see in your eyes what yo