I read a bit "Lucene in action" with a lot of nice example and was very
optimistic to use solr, but i was really disappointed when I was looking for
documentation for solr - even the javadoc is very poor, no explanation of
the framework, about why there are so many different classes with similar
n
I have the same problem, also need to plugin my "customComparator", but as
there is no explanation of the framework, how a RequestHandler is working,
what comes in, what comes out ... just impossible!
Can someone explain where i have to add which code, to just have the same
functionality as the S
Markus, as we are all volunteers here, nobody is paid to write code and
documentation. Everybody scratches their own itch. Complaining won't do a
lot of good here.
Most of Solr is not meant to be consumed as an API and therefore there is a
general lack of javadocs. Solr is generally used through c
On Tue, Dec 16, 2008 at 2:24 PM, psyron wrote:
>
> I have the same problem, also need to plugin my "customComparator", but as
> there is no explanation of the framework, how a RequestHandler is working,
> what comes in, what comes out ... just impossible!
>
> Can someone explain where i have to a
Markus,
A couple of code pointers for you:
* QueryComponent - this is where results are generated, it uses a
SortSpec from the QParser.
* QParser#getSort - creating a custom QParser you'll be able to
wire in your own custom sort
You can write your own QParserPlugin and QParser, and c
We have an architecture where we want to flip the solr data.dir (massive
dataset) while running and serving search requests with minimal downtime.
Some additional requirements.
* While ideally - we want the Solr Search clients to continue to serve
from the indices as soon as possible -the over
Hi Erik,
Thanks a lot for looking into this, it's greatly appreciated.
Mark
On Tue, Dec 16, 2008 at 2:51 AM, Erik Hatcher wrote:
> Mark,
>
> Looked at the code to discern this...
>
> A fragmenter isn't responsible for the number of snippets - the higher
> level SolrHighlighter is the component
Hey there,
I am using sort at searching time.
I would like to know the advantages of using sint field type instead of
integer field type. Can't find it anywhere
I am sorting asc by price. The problem is that not all docs have the field
price and the ones that haven't it apear as first results. I
No, I didn't mean storing the binary along with, just that I could
send a binary file (or a text file) which tika could process and store
along with the XML which describes its literal meta-data.
Best,
Jacob
On Mon, Dec 15, 2008 at 7:17 PM, Grant Ingersoll wrote:
>
> On Dec 15, 2008, at 8:20 AM,
sint sorts in numeric order, int does not.
check the sortMissingLast params in the example config
On Dec 16, 2008, at 12:24 PM, Marc Sturlese wrote:
Hey there,
I am using sort at searching time.
I would like to know the advantages of using sint field type instead
of
integer field type.
Another possibility is to put a price:[1 TO *] at your query.
2008/12/16 Ryan McKinley
>
> sint sorts in numeric order, int does not.
>
> check the sortMissingLast params in the example config
>
>
>
> On Dec 16, 2008, at 12:24 PM, Marc Sturlese wrote:
>
>
>> Hey there,
>>
>> I am using sort at s
I am reading the wiki here at - http://wiki.apache.org/solr/Solrj .
Is there a requestHandler ( may be - some admin handler ) already
present that can retrieve the solr.solr.home for a given
CommonsHttpSolrServer instance ( for a given solr endpoint), through an
api.
Mark,
Looked at the code to discern this...
A fragmenter isn't responsible for the number of snippets - the higher
level SolrHighlighter is the component that uses that parameter. So
yes, it must be specified at the request handler level, not the
fragmenter configuration.
Erik
Or have a look at the Wiki, probably a better way to start:
http://wiki.apache.org/solr/SolPHP
Best,
Patrick
--
Just trying to help
http://www.ipros.nl/
--
-Original Mes
perhaps CoreAdminRequest... it does not give you the property, but
you can see where things are...
http://wiki.apache.org/solr/CoreAdmin
On Dec 16, 2008, at 12:53 PM, Kay Kay wrote:
I am reading the wiki here at - http://wiki.apache.org/solr/Solrj .
Is there a requestHandler ( may be - so
Hi All,
I'm developping a webapp that needs access to the solr webapp.
I can get my solr context like that:
ServletContext solrContext = getServletContext().getContext("/solr");
but when I do
solrContext.getRequestDispatcher("/core0/select/").dispatch(request,response)
;
I get a 404 err
Check out this link
http://www.ibm.com/developerworks/library/os-php-apachesolr/index.html
If anyone of you used it can you share your experiences.
Thanks,
Kishore Veleti A.V.K.
Julian Davchev wrote:
>
> Hi,
> I am about to integrate solr for index/search of my documents/data.
> It's php app
: Max - field collapsing may be your friend -
https://issues.apache.org/jira/browse/SOLR-236
that doesn't really seem related ... i don't believe Max wants to see all
results from a store "collapsed" into on result, i think he wants to see
results from differnet stores treated "more fairly" and
Hi,
I am about to integrate solr for index/search of my documents/data.
It's php application but I see it should be no problem as solr works
with xml by default.
Is there any read php lib that will ease/help whole communication with
solr and if possible to send/receive json data.
I looked up arch
Excellent, thank you! :)
-Derek
On Mon, Dec 15, 2008 at 8:45 PM, Otis Gospodnetic <
otis_gospodne...@yahoo.com> wrote:
> Derek,
>
> q=+referring:XXX +question:YYY
>
>
> (of course, you'll have to URL-encode that query string0
>
> Otis
> --
> Sematext -- http://sematext.com/ -- Lucene - Solr - Nu
: if(document.hasDateField == 1){
: boost = somefunction(document.dateField);
: } else{
: boost = 1;
: }
bq = ( ( +hasDateField:true _val_:somefunc(dateField) )
( -hasDateField:true *:*^1 )
)
That covers the possiblility that hasDateField is not set for some docs.
The query
Hi All,
I'm trying to use the Data import handler, with the data config below
(snippet):
The variables are all good (userrname+password, etc), but I'm getting
the following exception, any thoughts?
org.apache.solr.handler.dataimport.DataImportHandlerException: No
dataSource :null availabl
Hello,
Someone could tell me how can i checkout the 1.4 snapshot ?
thanks,
--
"Without love, we are birds with broken wings."
Morrie
Hi,
You can find the SVN repository here:
http://www.apache.org/dev/version-control.html#anon-svn
I'm not sure if this represent the 1.4 version, but as being the trunk
it's the latest version.
Best,
Patrick
-Original Message-
From: roberto [mailto:miles.c...@gmail.com]
Sent: dinsdag
Sorry all,
Wrong url in the post, right url should be:
http://svn.apache.org/repos/asf/lucene/solr/
Best,
Patrick
-Original Message-
From: Plaatje, Patrick [mailto:patrick.plaa...@getronics.com]
Sent: dinsdag 16 december 2008 22:19
To: solr-user@lucene.apache.org
Subject: RE: check
I'll try to get the source from this link,
thanks
On Tue, Dec 16, 2008 at 7:23 PM, Plaatje, Patrick <
patrick.plaa...@getronics.com> wrote:
> Sorry all,
>
> Wrong url in the post, right url should be:
>
> http://svn.apache.org/repos/asf/lucene/solr/
>
> Best,
>
> Patrick
>
>
>
> -Original Me
Hi,
1. Thanks for links, I looked at both. Still I think that solr or at
least those php clients doesn't support jason as input.
It's clear that it's possible to get json response.but search is
only possible via xml queries.
Plaatje, Patrick wrote:
> Or have a look at the Wiki, probably a
If I have a CustomRequestHandler that inherits from RequestHandlerBase
implementing SolrCoreAware interface - what is the lifecycle of the
invocation of method - inform(SolrCore) in a multiple SolrCore context .
Would it be that we have separate instances of RequestHandlers created
for each So
I think I got it now. Search request is actually just simple url with
few params...no json or xml or fancy stuff needed.
I was concerned with this cause I need to use solr with javascript
directly, bypassing application and directly searching stuff.
Plaatje, Patrick wrote:
> Hi Julian,
>
> I'm a b
Glad that's sorted. On the other issue (directly accessing solr from any
client) I think I saw a discussion on the list earlier, but I don't know
what the result was, browse through the archives and look for something
about security (I think).
Best,
patrick
-Original Message-
From: Juli
Hi Julian,
I'm a bit confused. The indexing is indeed being done through XML, but
in searching it is possible to get JSON results by using the wt=json
parameter, have a look here:
http://wiki.apache.org/solr/SolJSON
Best,
Patrick
-Original Message-
From: Julian Davchev [mailto:j...@dr
Hi,
I am just going through
http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters and maillist
archive
but somehow can't find the solution. Is it possible that I treat
'möchten' , 'mochten' and 'moechten' the same way.
Of course not hardcoding this but rather work for any umlaut.
Cheers
I believe the german porter stemmer should handle this. I haven't
used it with SOLR but I've used it with other projects, and basically,
when the word is parsed, the umlauts and also accented vowels are
converted to plain vowels. I guess with SOLR you use
solr.SnowballPorterFilterFactory:
Hello,
I'm looking to implement one auto suggest search feature, i found a fews
posts with some information about the" EdgeNGramFilterFactory" but i
couldn't understand very well how to implement, someone can send me kindly
the way?
thanks,
--
"Without love, we are birds with broken wings."
Mo
you either remove the name="mySource" from the dataSource tag or add
dataSource="mySource" in the entity 'item'
On Wed, Dec 17, 2008 at 2:26 AM, Plaatje, Patrick
wrote:
> Hi All,
>
> I'm trying to use the Data import handler, with the data config below
> (snippet):
>
> driver="com.mysql.jdbc.Dr
: 2<-25%
:
:
:
: correct me if i am wrong isn't the above mm config means if its 1 or 2
: terms then match all but if its more than 2 terms then 25% can be
: missing. i get below as parsed query
This is exactly what you asked in another thread, which i answered in the
other threa
: > : If I can find the bandwidth, I'd like to make something which allows
: > : file uploads via the XMLUpdateHandler as well... Do you have any ideas
: >
: > the XmlUpdateRequestHandler already supports file uploads ... all request
: But it doesn't do what Jacob is asking for... he wants (if I
Hi,
thanks a lot! Looks like what I need except that I cannot use dismax
because I need to be able to do prefix queries. I'm new to Solr, so I
don't know if there's a way to formulate this in a standard query. If
not, I could extend DismaxRequestHandler so it doesn't escape the "*"s,
right?
Robe
: thanks a lot! Looks like what I need except that I cannot use dismax
: because I need to be able to do prefix queries. I'm new to Solr, so I
there's nothing dismax related in that syntax, i just suggested using it
in a "bq" param becuase i assumed that's what you were using.
q = +pre:fix* (ha
Hi,
I'm rather new to Solr and for my current projects came to the
conclusion that DisMaxRequestHandler is exactly the tool I need, except
that it doesn't allow prefix queries.
I found a thread in the archive were someone mentioned the idea of
making this behaviour configurable (which characters
On Wed, Dec 17, 2008 at 3:11 AM, Kay Kay wrote:
> If I have a CustomRequestHandler that inherits from RequestHandlerBase
> implementing SolrCoreAware interface - what is the lifecycle of the
> invocation of method - inform(SolrCore) in a multiple SolrCore context .
>
> Would it be that we have se
Chris Hostetter wrote:
> : thanks a lot! Looks like what I need except that I cannot use dismax
> : because I need to be able to do prefix queries. I'm new to Solr, so I
>
> there's nothing dismax related in that syntax, i just suggested using it
> in a "bq" param becuase i assumed that's what yo
42 matches
Mail list logo