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
repository.search("The Matrix", pageRequest); // search for terms "The" AND "Matrix"repository.search("Avenge*", pageRequest); // prefix search for terms beginning with "Avenge"repositry.search("\"James Bond\"", pageRequest); // Search explicitly for the term "James Bond"
redis-om will produce the following queries params:
Currently (0.5.1) Generic searches are broken as wilcard and special characters will be escaped.
For Example:
Consider the repository method:
Using Search terms such as:
redis-om will produce the following queries params:
Escaping for generic searches should be left to the calling client rather than the redis-om lib.
The text was updated successfully, but these errors were encountered: