Re: Trending topics?

2012-08-02 Thread Tor Henning Ueland
On Thu, Aug 2, 2012 at 5:34 PM, Chris Dawson wrote: > How would I generate a list of trending topics using solr? > By putting them in solr. (Generic question get at generic answer) What do you mean? Trending searches, trending data, trending documents, trending what? -- Regards Tor H

Re: Performance issues

2011-11-20 Thread Tor Henning Ueland
s the search queries are few enough that they are always within Solr`s own query cache. -- Regards Tor Henning Ueland

Re: SOLR HttpCache Qtime

2011-10-10 Thread Tor Henning Ueland
se > http caching On. Don`t bother with it at Varnish/Squid level, just time how long it takes to perform a query() in your application. -- Mvh Tor Henning Ueland

Re: n-gram speed

2011-05-30 Thread Tor Henning Ueland
> Server: i7, 12Gb Start by optimizing it, it wont "stop working" due to a optimize. Some other vital info is the size of the index, disk type used etc (SSD, SATA, IDE..) -- Mvh Tor Henning Ueland

Re: Select multiple facets with OR instead of AND

2011-05-20 Thread Tor Henning Ueland
On Fri, May 20, 2011 at 9:59 PM, Dhanushka Samarakoon wrote: > That worked. Thanks :-) Great! :) -- Regards Tor Henning Ueland

Re: Select multiple facets with OR instead of AND

2011-05-20 Thread Tor Henning Ueland
e just as the q-field, so you should be able to do a : fq=keyword:(foo OR bar OR lasagna) -- Mvh Tor Henning Ueland

Re: Order of words in proximity search

2011-05-16 Thread Tor Henning Ueland
> -- > View this message in context: > http://lucene.472066.n3.nabble.com/Order-of-words-in-proximity-search-tp2938427p2946764.html > Sent from the Solr - User mailing list archive at Nabble.com. > -- Mvh Tor Henning Ueland

Re: Order of words in proximity search

2011-05-16 Thread Tor Henning Ueland
. " > > so you could search for "foo bar"~101 in your example. > > Ludovic. > > > - > Jouve > France. > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Order-of-words-in-proximity-search-tp2938427p2946620.html > Sent

Re: Order of words in proximity search

2011-05-15 Thread Tor Henning Ueland
.com/Order-of-words-in-proximity-search-tp2938427p2944050.html > Sent from the Solr - User mailing list archive at Nabble.com. > -- Mvh Tor Henning Ueland

Re: Order of words in proximity search

2011-05-15 Thread Tor Henning Ueland
Hello, Thanks for the replay. Just as i suspected. So the solution then is to create a OR search with both possibilities in order to make the order not be important" "foo bar"~100 -> ("foo bar~100 OR "bar foo"~100) -- Best regards Tor Henning Ueland On Su

Re: Multi Word Filter Queries

2011-05-13 Thread Tor Henning Ueland
ot use operators, the query will become: fq=field:foo OR bar. -- Best regards Tor Henning Ueland H3x.no

Order of words in proximity search

2011-05-13 Thread Tor Henning Ueland
: "foo bar"~99 - 10 hits "bar foo"~99 - 11 hits -- Best regards Tor Henning Ueland

Re: jdbc4.CommunicationsException

2010-06-20 Thread Tor Henning Ueland
ataImporter.java:370) > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/jdbc4-CommunicationsException-tp909274p909274.html > Sent from the Solr - User mailing list archive at Nabble.com. > -- Mvh Tor Henning Ueland

Re: Tips on recursive xml-parsing in dataConfig

2010-06-19 Thread Tor Henning Ueland
; Geert-Jan > > > <http://wiki.apache.org/solr/DataImportHandler> > > 2010/6/8 Tor Henning Ueland > >> I have tried both to change the datasource per child node to use the >> parent nodes name, and tried to making the Xpath`s relative, all >> cau

Re: Tips on recursive xml-parsing in dataConfig

2010-06-08 Thread Tor Henning Ueland
/TEKST/KAP is absolute ( the prefixed '/' tells it to be). Try > 'KAP' instead. > The same for all xpaths deeper in the tree. > > Geert-Jan > > 2010/6/7 Tor Henning Ueland > >> Hi, >> >> I am doing some testing of dataimport to Solr from XML-docum

Tips on recursive xml-parsing in dataConfig

2010-06-07 Thread Tor Henning Ueland
speed up the process? I have been looking around for some examples, but nobody gives examples of such deep data indexing. PS: I know there are some bugs in the Xpath naming etc, but it is just a rough example :) -- Best regars Tor Henning Ueland