RE: Multiple Solr Webapps

2007-12-19 Thread Pierre-Yves LANDRON
I'm trying to deploy several solr instance on my linux server, following the solr wiki instruction : I've created TWO context fragment files (solr1.xml solr2.xml), each one pointing on a different solr directory ( and ) and the same solr.war ( and ) to have it working fine. I would prefer

Re: query string gets truncated

2007-12-19 Thread Erik Hatcher
On Dec 19, 2007, at 2:21 AM, Kasi Sankaralingam wrote: str name=querystringname_t:are/str str name=parsedquery / str name=parsedquery_toString / Parsed Query happens to be nothing, if I add an a to the query string like area then parsedquerystring points to area. I turned off port

Version Conflict?

2007-12-19 Thread Kirk Beers
Hi, We have existing indices that apparently were built on Lucene 2.1 specs so can you please confirm that these will or will not work with Solr 1.2 and if not will it work with Solr 1.1? Thanks Kirk

Retrieving Tokens

2007-12-19 Thread Rishabh Joshi
Hi, I have created my own Tokenizer and I am indexing the documents using the same. I wanted to know if there is a way to retrieve the tokens (created by my custom tokenizer) from the index. Do we have to modify the code to get these tokens? Regards, Rishabh

Re: Issues with postOptimize

2007-12-19 Thread Jae Joo
try it. listener event=postOptimize class=solr.RunExecutableListener str name=exe/search/replication_test/0/index/solr/bin/snapshooter/str str name=dir./str bool name=waittrue/bool /listener Jae On Dec 19, 2007 9:10 AM, Bill Au [EMAIL PROTECTED] wrote: Just changing the

Re: Lucene And SOLR

2007-12-19 Thread Ryan McKinley
solr can read any lucene index (provided it is a compatible format to the lucene jars included in that release) To make sure searching is useful, you will need to make sure the configured fields and analyzers are compatible with what you are doing directly with lucene. ryan s d wrote: Is

RE: Solr replication

2007-12-19 Thread Norskog, Lance
You can probably find an rsync port for Windows in the gnu32 or cygnus distributions. There is a bigger problem here. To quote myself in another recent mail: The replication scripts use two Unix file system tricks. 1) Files are not directly bound with with filenames, instead

solr web admin

2007-12-19 Thread Ben Incani
why does the web admin append core=null to all the requests? e.g. admin/get-file.jsp?core=nullfile=schema.xml

Re: solr web admin

2007-12-19 Thread Ryan McKinley
it is part of SOLR-350 and will go away soon. The perils of using trunk ;) Ben Incani wrote: why does the web admin append core=null to all the requests? e.g. admin/get-file.jsp?core=nullfile=schema.xml

get the fields of solr

2007-12-19 Thread Edward Zhang
I need to get all the fields of a remote solr istance. I try to parse the xmlstream returned by admin/get-file.jsp?file=schema.xmlcore=core1.Is there any other way? BTW: The xmlstream contain 3 space lines in head and 2 in tail, which cause some trouble to parse. Every reply appreciated.