You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Redis-Search module, **the default dialect is 2**. If needed, you can explicitly specify a different dialect using the appropriate configuration in your queries.
217
235
218
-
## Contributing
236
+
**Important**: Be aware that the query dialect may impact the results returned. If needed, you can revert to a different dialect version by passing the desired dialect in the arguments of the command you want to execute.
237
+
For example:
238
+
```
239
+
res2, err:= rdb.FTSearchWithArgs(ctx,
240
+
"idx:bicycle",
241
+
"@pickup_zone:[CONTAINS $bike]",
242
+
&redis.FTSearchOptions{
243
+
Params: map[string]interface{}{
244
+
"bike": "POINT(-0.1278 51.5074)",
245
+
},
246
+
DialectVersion: 3,
247
+
},
248
+
).Result()
249
+
```
250
+
You can find further details in the [query dialect documentation](https://redis.io/docs/latest/develop/interact/search-and-query/advanced-concepts/dialects/).
219
251
220
-
Please see [out contributing guidelines](CONTRIBUTING.md) to help us improve this library!
252
+
## Contributing
253
+
We welcome contributions to the go-redis library! If you have a bug fix, feature request, or improvement, please open an issue or pull request on GitHub.
254
+
We appreciate your help in making go-redis better for everyone.
255
+
If you are interested in contributing to the go-redis library, please check out our [contributing guidelines](CONTRIBUTING.md) for more information on how to get started.
0 commit comments