For the complete documentation index, see llms.txt. This page is also available as Markdown.

In-Memory (Redis)

  • In-memory store

  • Fast (because it uses memory instead of disk)

  • Usually it is not used as the main datastore

While it is usually used for cache, but you can also use it for other stuff such as distributed locking (redlock).

To read more about redlock:

(more about distributed lock later)

Last updated