Re: Exact substring search with ngrams

2015-08-27 Thread Christian Ramseyer
On 26/08/15 18:05, Erick Erickson wrote: bq: my dog has fleas I wouldn't want some variant of og ha to match, Here's where the mysterious positionIncrementGap comes in. If you make this field multiValued, and index this like this: doc field name=blahmy dog/field field name=blahhas

Re: Exact substring search with ngrams

2015-08-26 Thread Christian Ramseyer
want some variant of og ha to match, but I didn't realize it didn't give me any positions like you noticed. I'll try to experiment some more, thanks for the hints! Chris Best, Erick On Tue, Aug 25, 2015 at 3:00 PM, Christian Ramseyer r...@networkz.ch wrote: Hi I'm trying to build

Exact substring search with ngrams

2015-08-25 Thread Christian Ramseyer
Hi I'm trying to build an index for technical documents that basically works like grep, i.e. the user gives an arbitray substring somewhere in a line of a document and the exact matches will be returned. I specifically want no stemming etc. and keep all whitespace, parentheses etc. because they

Re: Multi-Tenant Setup in Single Core

2013-11-13 Thread Christian Ramseyer
On 11/12/13 5:20 PM, Shawn Heisey wrote: Ensure that all handler names start with a slash character, so they are things like /query, /select, and so on. Make sure that handleSelect is set to false on your requestDispatcher config. This is how Solr 4.x examples are set up already. With

Multi-Tenant Setup in Single Core

2013-11-12 Thread Christian Ramseyer
Hi guys I'm prototyping a multi-tenant search. I have various document sources and a tenant can potentially access subsets of any source. Also tenants have overlapping access to the sources, why I'm trying to do it in a single core. I'm doing this by labeling the source (origin, single value)

Re: Multi-Tenant Setup in Single Core

2013-11-12 Thread Christian Ramseyer
, Erick On Tue, Nov 12, 2013 at 7:09 AM, Christian Ramseyer r...@networkz.ch wrote: Hi guys I'm prototyping a multi-tenant search. I have various document sources and a tenant can potentially access subsets of any source. Also tenants have overlapping access to the sources, why I'm trying