Rethinkdb: search a string in whole table (full text search like)

111 Views Asked by At

I'm writing a python flask application in combination with rethinkDB.

snippit structure:

{'Name': ['Gandalf', 'Jackson'], 'street': 'elmStreet'...}

This kind of structure is used multiple times, so basically I have all my keys as a string and my values are either also strings or an array with strings.

So I want a full-text search on this structure without using ElasticSearch or any additional program if it is possible.

Thanks for reading, have a nice day :)

1

There are 1 best solutions below

0
On

I solved my issue, by using the python search engine whoosh, for it no additional program is needed.