Redis Modules Commands
######################
Accessing redis module commands requires the installation of the supported `Redis module `_. For a quick start with redis modules, try the `Redismod docker `_.
RedisBloom Commands
*******************
These are the commands for interacting with the `RedisBloom module `_. Below is a brief example, as well as documentation on the commands themselves.
**Create and add to a bloom filter**
.. code-block:: python
import redis
r = redis.Redis()
r.bf().create("bloom", 0.01, 1000)
r.bf().add("bloom", "foo")
**Create and add to a cuckoo filter**
.. code-block:: python
import redis
r = redis.Redis()
r.cf().create("cuckoo", 1000)
r.cf().add("cuckoo", "filter")
**Create Count-Min Sketch and get information**
.. code-block:: python
import redis
r = redis.Redis()
r.cms().initbydim("dim", 1000, 5)
r.cms().incrby("dim", ["foo"], [5])
r.cms().info("dim")
**Create a topk list, and access the results**
.. code-block:: python
import redis
r = redis.Redis()
r.topk().reserve("mytopk", 3, 50, 4, 0.9)
r.topk().info("mytopk")
.. automodule:: redis.commands.bf.commands
:members: BFCommands, CFCommands, CMSCommands, TOPKCommands
------
RedisGraph Commands
*******************
These are the commands for interacting with the `RedisGraph module `_. Below is a brief example, as well as documentation on the commands themselves.
**Create a graph, adding two nodes**
.. code-block:: python
import redis
from redis.graph.node import Node
john = Node(label="person", properties={"name": "John Doe", "age": 33}
jane = Node(label="person", properties={"name": "Jane Doe", "age": 34}
r = redis.Redis()
graph = r.graph()
graph.add_node(john)
graph.add_node(jane)
graph.add_node(pat)
graph.commit()
.. automodule:: redis.commands.graph.node
:members: Node
.. automodule:: redis.commands.graph.edge
:members: Edge
.. automodule:: redis.commands.graph.commands
:members: GraphCommands
------
RedisJSON Commands
******************
These are the commands for interacting with the `RedisJSON module `_. Below is a brief example, as well as documentation on the commands themselves.
**Create a json object**
.. code-block:: python
import redis
r = redis.Redis()
r.json().set("mykey", ".", {"hello": "world", "i am": ["a", "json", "object!"]})
Examples of how to combine search and json can be found `here `_.
.. automodule:: redis.commands.json.commands
:members: JSONCommands
-----
RediSearch Commands
*******************
These are the commands for interacting with the `RediSearch module `_. Below is a brief example, as well as documentation on the commands themselves. In the example
below, an index named *my_index* is being created. When an index name is not specified, an index named *idx* is created.
**Create a search index, and display its information**
.. code-block:: python
import redis
from redis.commands.search.field import TextField
r = redis.Redis()
index_name = "my_index"
schema = (
TextField("play", weight=5.0),
TextField("ball"),
)
r.ft(index_name).create_index(schema)
print(r.ft(index_name).info())
.. automodule:: redis.commands.search.commands
:members: SearchCommands
-----
RedisTimeSeries Commands
************************
These are the commands for interacting with the `RedisTimeSeries module `_. Below is a brief example, as well as documentation on the commands themselves.
**Create a timeseries object with 5 second retention**
.. code-block:: python
import redis
r = redis.Redis()
r.ts().create(2, retention_msecs=5000)
.. automodule:: redis.commands.timeseries.commands
:members: TimeSeriesCommands