Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><a href="http://redis.io/" rel="noreferrer">Redis</a> is a key-value storage system that operates in RAM memory, it's like a "light database" and since it works at RAM memory level it's orders of magnitude faster compared to reading/writing to PostgreSQL or any other traditional <a href="http://en.wikipedia.org/wiki/Relational_database" rel="noreferrer">Relational Database</a>. Redis is a so-called <a href="http://nosql-database.org/" rel="noreferrer">NoSQL</a> database, like <a href="https://www.mongodb.org/" rel="noreferrer">Mongo</a> and many others. It can't directly replace PostgreSQL, you still want permanent storage, but it works along with Relational Databases as an alternate storage system. You can use Redis if your IO operations start getting expensive and it's great for quick calculations and key-based queries.</p> <p>You can include it in your Django/Python project with a wrapper, for example <a href="https://github.com/andymccurdy/redis-py" rel="noreferrer">redis-py</a>.</p> <p>Redis is very simple to install and use, you can check the examples at <a href="https://github.com/andymccurdy/redis-py" rel="noreferrer">redis-py</a>. Redis is independent from any Relational Database, that way you can use it for caching, calculating or storing values permanently and/or temporarily. It can help reduce querying to PostgreSQL, in the end you can use it the way you want and take advantage from it to improve your app/architecture.</p> <p>This similar question can help you <a href="https://stackoverflow.com/questions/3801379/how-can-i-use-redis-with-django">Redis with Django</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload