I'd like to send a string to Solr and let it answer with all records which are a subset of that string.
The string I would send has integer numbers separated by spaces. I wanna make solr give me all records where a specific string field is a subset of the numbers I provide as the request string.
An example...
Imagine I have an string field indexed in Solr which is in reality a set of integers separated by space. For example, let's say I have the following record's field indexed in Solr:
- "888110"
- "888110 888120"
- "888110 888120 888130"
- "888110 888120 888130 888140"
- "888110 888130 888140"
- "888110 888140"
- "888140"
- "888120 888130"
I wanna Solr to receive a query with, for example, "888110 888140" and reply with the following records:
- "888110"
- "888110 888140"
- "888140"
If I query by "888110 888120 888130" the retrieved records would be...
- "888110"
- "888110 888120"
- "888110 888120 888130"
- "888120 888130"
The retrieved records must be exactly a subset of the numbers provided as a string.
Is it possible to make Solr behave like this?