We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 551429c commit 285f7c9Copy full SHA for 285f7c9
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