Reputation: 21
I would search a keyword or search complex expression in a document stored in couchdb. There are examples that show me how can I proceed? An example, after storing a txt or pdf document, I need to search a particular word or expression inside the document
e.g the number of word "foo" in a pdf document stored in couchdb database, the expression "this is an example" inside a huge and long txt document.
Upvotes: 1
Views: 119
Reputation: 27961
What you're after is called "full text indexing", if you search for that phrase, and add "couchdb" you will see all the different sorts of options like Lucene, indexer, and ElasticSearch
Upvotes: 1