Re: Retrieving Tokens

2007-12-19 Thread Rishabh Joshi
> What are you trying to do with the tokens? Yonik, we wanted a "tokenizer" that would tokenize the content of a document as per our requirements, and then store them in the index so that, we could retrieve those tokens at search time, for further processing in our application. Regards, Rishabh

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.xml&core=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.

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=null&file=schema.xml

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=null&file=schema.xml

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 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: Issues with postOptimize

2007-12-19 Thread Jae Joo
try it. /search/replication_test/0/index/solr/bin/snapshooter . true Jae On Dec 19, 2007 9:10 AM, Bill Au <[EMAIL PROTECTED]> wrote: > Just changing the permission on the script is not enough. The id > executing > the script needs to have write permission to create the snapshot

Lucene And SOLR

2007-12-19 Thread s d
Is there a way to import a Lucene index (as is) into SOLR? Basically, I'm looking to enjoy the "web context" and caching provided by SOLR but keep the index under my control in Lucene.

Configurations and Variables

2007-12-19 Thread Owens, Martin
Hello, I'm trying to configure solr to put the multiCore index data in other places, I'm also trying to get each core to share the same solrconfig.xml What I need is a variable I can use in the data directory that will point towards the core directory, from there I can add /data and have each o

Re: Retrieving Tokens

2007-12-19 Thread Yonik Seeley
On Dec 19, 2007 10:59 AM, Rishabh Joshi <[EMAIL PROTECTED]> wrote: > 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. If you want the tokens in the inde

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

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

Re: Making stemming dynamic at query time

2007-12-19 Thread Kamran Shadkhast
The easiest is probably to have two copies of your field, using , one stemmed and one not, and search in one or the other. -Bertrand Yes, I knew this, but it costs me too much, in my case having more than 65M records and saving most of the fields inside the index for highlighting purpose does no

Re: Issues with postOptimize

2007-12-19 Thread Bill Au
Just changing the permission on the script is not enough. The id executing the script needs to have write permission to create the snapshot. Bill On Dec 18, 2007 6:26 PM, Sunny Bassan <[EMAIL PROTECTED]> wrote: > I've set the permissions on the script to execute for all users. And it > does see

Re: query string gets truncated

2007-12-19 Thread Erik Hatcher
On Dec 19, 2007, at 2:21 AM, Kasi Sankaralingam wrote: name_t:are 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 stemming and it still does not work ( I guess I need to re-index again turning o

Re: Solr 1.3 expected release date

2007-12-19 Thread j 90
Thums up - w00t On Dec 14, 2007 1:21 AM, Norberto Meijome <[EMAIL PROTECTED]> wrote: > On Wed, 12 Dec 2007 20:04:00 -0500 > "Norskog, Lance" <[EMAIL PROTECTED]> wrote: > > > ... SOLR-303 (Distributed Search over HTTP)... > > > > Woo-hoo! > > hear hear!!! > _ > {Beto|Norber

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