I've a question about indexing/searching techniques in relation to document
level security.
In planning a system that has, let's say, about 1million search documents
with about 100 search fields each. Most of them unstored to keep the index
size low, because some of them can contain some kilobytes
Hi,
a bit more information would help to identify what's the problem in your
case.
but in general these facts come into my mind:
- leading wildcard queries are not available in solr (without extending the
QueryParser).
- no text analysing will be performed on the search word when using
wildcards
Just a quick question about natural sorting of strings.
I've a simple dynamic field in my schema:
There are 3 indexed strings for example
string1,string2,string10
Executing a query and sorting by this field leads to unnatural sorting of :
string1
string10
string2
(Some time ago i used Lucen
zerFactory. Where I split at
underscore and dot.
But, now I also want to search for firstname_lastname or
lastname_employeenumber
Which does not work because the underscore was tokenized and is not part of
the indexed token anymore.
Any suggestions how to do that?
Thanks in advance.
RL
--