-
Notifications
You must be signed in to change notification settings - Fork 60
Closed
Description
- There is no type
NumericalField
, it isNumericField
- Client doesn't accept username as an parameter
client = Client("my-index", username="user", password="my-password")
- The following example that you show doesn't work - you can't set a Python datetime object in Redis
import datetime
from redisearch import Client
START_TIME = datetime.datetime.now()
client = Client("my-index")
client.redis.set("start-time", START_TIME)
- This example is missing a colon
try:
client.info()
except ResponseError
# Index does not exist. We need to create it!
client.create_index(SCHEMA, definition=definition)
Metadata
Metadata
Assignees
Labels
No labels