We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 551429c commit 02b6c53Copy full SHA for 02b6c53
aredis_om/model/token_escaper.py
@@ -9,7 +9,7 @@ class TokenEscaper:
9
10
# Characters that RediSearch requires us to escape during queries.
11
# Source: https://redis.io/docs/stack/search/reference/escaping/#the-rules-of-text-field-tokenization
12
- DEFAULT_ESCAPED_CHARS = r"[,.<>{}\[\]\\\"\':;!@#$%^&*()\-+=~\ ]"
+ DEFAULT_ESCAPED_CHARS = r"[,.<>{}\[\]\\\"\':;!@#$%^&*()\-+=~\/ ]"
13
14
def __init__(self, escape_chars_re: Optional[Pattern] = None):
15
if escape_chars_re:
0 commit comments