how to save a snapshot of an index?

2010-07-11 Thread Li Li
When I add some docs by post.jar(org.apache.solr.util.SimplePostTool), It commits after all docs are added. It will call IndexWriter.commit(). And a new segment will be added and sometimes it triggers segment merging. New index files will be generated(frm, tii,tis, ). Old segments will be d

Re: Score boosting

2010-07-11 Thread Chamnap Chhorn
Thanks for your reply. Do you have other solution? Here each keyphrase must be matched with the exact and whole world. The problem is that it is a multivalued column. Chamnap On Thu, Jul 8, 2010 at 7:40 PM, osocurious2 wrote: > > Sounds like you want Payloads. I don't think you can guarantee a p

Supplementing already indexed data

2010-07-11 Thread Tod
I'm getting metadata from a RDB but the actual content is stored somewhere else. I'd like to index the content too but I don't want to overlay the already indexed metadata. I know this can be done but I just can't seem to dig up the correct docs, can anyone point me in the right direction?

stemmed terms and phrases in a combined query

2010-07-11 Thread oferiko
Hey guys, a question about query multiple fields. I would like to query my index with queries that contained some words that should be stemmed and some that should not. For example, for the query: Nike's new "running shoes", i would like to be able to get also nike, but for "running shoes" i woul

Facet count != Query count

2010-07-11 Thread Darren Govoni
Hi, What could cause a facet query on a field (say 'name') differ in count from a basic query on the field using the same value? e.g name:'Darren' If there are 10 documents that match this, the facet count should be 10 for 'Darren', and I should get 10 results if I query on the field. But aft

RE: problem to indexing

2010-07-11 Thread Steven A Rowe
Hi Jörg, Just guessing what the problem is, the following looks like it's not well-formed XML: & If you want just the char "&", that should instead read: & Similarly, you should escape "<" and ">" chars in text: < and > respectively. Steve > -Original Message- > From: Jörg Ag

problem to indexing

2010-07-11 Thread Jörg Agatz
Hallo Users.. I have a lot of work :-) i havt ti indexing Mails.. .. And it works, but sometime i get Errors, ind i Dont know why.. Maby you can Help.. My XML: acd1a9416fe3ddaca1442e44e0ca8751 0747046bcc415546b565108e3da19406bf677f9...@ 20100709140235 103261 /2010/0

Re: Database connections during data import

2010-07-11 Thread osocurious2
Gora, Our environment, currently under development, is very nearly the exact same thing as yours. My DB is currently only about 10GB, but likely to grow. We also use Solr as primary repository (store all fields there), but use the DB as a back up when Full Import is needed. Delta imports aren't th