ryantxu wrote:
>
> yes, you would index a field twice - once with a LowerCaseFilter and
> once without. That is a good solution.
>
I implement this and now there are some strange problems:
1. highlighting not always properly work for not case sensitive search
: if I search for name:"AR*", I get 1 result with the word AR in it, and the
: following debug output. Seems like it is throwing out my wildcard.
it is. don't search for name:"AR*" ... that says you want to find any
document contain the string "AR*" --eithout treaing the * as a special
charact
You can set the firewall of your server to accept connection to the solr port
only from your webserver(s) and your test computer
Florent
-Message d'origine-
De : Laxmilal Menaria [mailto:[EMAIL PROTECTED]
Envoyé : jeudi 10 janvier 2008 13:59
À : solr-user@lucene.apache.org
Objet : Di
All servlet containers provide some mechamism for
authentication/authoriation -- just use that to restrict access to
/admin and/or /update
If you really want to, you can also register a dummy RequestHandler to
/admin and that will block access to the JSP interface
ryan
Laxmilal Menaria wr
Hello. If I need documents which has number of fields but also I have number of
other documents which related to the first one one-to-many. For example a
person, could have several addresses. I want to have all of them in search
result if I look for people. Also I want to search people by addres
Hi,
Thanks for responding.
The actual data is ARIZONA, and so I have to look for it with the query AR*.
I can take out the quotes, but then it doesn't find anything.
Abin
On Jan 11, 2008 1:33 AM, Chris Hostetter <[EMAIL PROTECTED]> wrote:
>
> : if I search for name:"AR*", I get 1 result with the
Does Solr 1.3 has been released or we have to wait??
not released yet -- it is the nightly build
If you already have a sort that works for you, you could do a
secondary sort by your field via
sort=score desc,myfield asc
The sort would need to score all the docs in each group equally for
this secondary sort to work (you didn't say if you've achieved that
yet).
-Yonik
On Jan 11, 2008 1:04 PM,
I did something like this in low-level Lucene using
FieldSortedHitQueue. The searchable lucene users
list should have more details.
Don't know how to do it in SOLR though...
Erick
On Jan 11, 2008 1:04 PM, Jörg Kiegeland <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I have a query of the form (a or b)
Hello,
I have a query of the form (a or b).
Documents matching this query are returned in the order how many
conditions are actually fullfilled.
E.g.
1. doc matching a and b
2. doc matching a and b
3. doc matching a
4. doc matching a
5. doc matching a
6. doc matching b
Now I want, that withi
On Jan 10, 2008 8:51 PM, Brian Artiaco <[EMAIL PROTECTED]> wrote:
> I'm kinda under the gun for this problem, and I thought that I would
> be able to solve this problem using the different Tokenizers and Query
> Analyzers that come with Solr, but I seem to be running into a brick
> wall.
>
> I'm cu
Hello, is this possible to do in one query:
I have a query which returns 1000 documents with names and addresses. I can run
facet on state field and see how many addresses I have in each state. But also
I need to see how many families lives in each state. So as a result I need a
matrix of states
Does Solr spell checker have the ability to suggest splitting of combined
words. So for e.g. if I have got the word "apple" and "computer" in my
index and if I type "applecomputer" then how can I make it suggest
"apple computer"
--
View this message in context:
http://www.nabble.com/spell-chec
Hi Hoss,
I am sorry but I did not understand this part:
The reason name:AR* doesn't work (but name:ARIZONA does) is because
when you are doing prefix or wildcard searches that "query analysis" can't
be used ... for a lot of reasons that are covered in the mailing list
archives, and is mentioned in
: Thanks for responding.
: The actual data is ARIZONA, and so I have to look for it with the query AR*.
: I can take out the quotes, but then it doesn't find anything.
sorry ... i was remembering an earlier email in this thread where you said
you had indexed the text "Arizone" ... but i forgot t
15 matches
Mail list logo