Update README.md

This commit is contained in:
yim7
2022-09-22 15:38:15 +08:00
committed by GitHub
parent 63372ba377
commit 34f6252213

View File

@@ -96,7 +96,7 @@ group by path and count unique remote_ip.
``` python
with SearchSession() as session:
# aggregate text must need use a keyword field instead
# aggregate text field need use a keyword field instead
# request_timeout argument will be passed on to the opensearch-py
result = (
session.select(UserLog)
@@ -104,4 +104,4 @@ with SearchSession() as session:
)
print(result)
# result -> {'path': 1, 'path2': 2}
```
```