now i use admin gui to moniter cache config
i don't know the difference betwin cumulative_ and no *cumulative_* ,,,like
cumulative_inserts and inserts
and i find evictions always show zeroi m curious when it will change and
its meaning
--
regards
jl
if use customer Analyzer,
u can use solr admin gui, and click analyzer which can help you use customer
analyzer(i use it to be sure my customer analyzer is ok).
if u wanna know query syntax ,,,it same with lucene,,so u can read
http://lucene.apache.org/java/docs/queryparsersyntax.html
2007
3.0.23 yesterday i try and fail.
which version u use,,,i just not use pro version.
2007/4/26, Bill Au <[EMAIL PROTECTED]>:
Have you tried resin 3.0.x? 3.1 is a development branch so it is less
stable as 3.0.
Bill
On 4/19/07, James liu <[EMAIL PROTECTED]> wrote:
>
> It work well when i use t
Doh doh doh doh; sorry :)
Turns out my email clients can't quite keep up with the traffic on
solr-dev and solr-user.
Thanks Yonik.
-Rushabh
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yonik
Seeley
Sent: Wednesday, April 25, 2007 11:34 AM
To: solr-use
What it probably boils down to is how you analyzed (or didn't) those
fields.
What is your schema for those fields?
Erik
On Apr 25, 2007, at 4:40 PM, Michael Kimsal wrote:
leading and trailing at the same time don't work. :( This is
supposedly
fixed in a lucene nightly, but I can
On 4/25/07, Jamie Orchard-Hays <[EMAIL PROTECTED]> wrote:
I have large TEI.2 docs that I am indexing. These are journal issuess
with all the typical sections in them. The main unit of organization
and interest is an article which I want to retrieve intact and display
(no problem there).
The ques
Could someone give advise on a better way to do this?
I have an index of many merchants and each day I delete merchant products
and re-update my database. After doing this I than re-create the entire
index and move it to production replacing the current index.
I was thinking about updating the in
Have you tried resin 3.0.x? 3.1 is a development branch so it is less
stable as 3.0.
Bill
On 4/19/07, James liu <[EMAIL PROTECTED]> wrote:
It work well when i use tomcat with solr
now i wanna test resin,,,i use resin-3.1.0
now it show me
[03:47:34.047] WebApp[http://localhost:8080] startin
What OS are you running on?
The "solr" on the rsync command line is just a label which is defined in
rsyncd.conf on the master. rsyncd.conf is created on the fly by the script
rsyncd-start:
cat < ${solr_root}/conf/rsyncd.conf
rsyncd.conf file
uid = $(whoami)
gid = $(whoami)
use chroot
On 4/25/07, Jack L <[EMAIL PROTECTED]> wrote:
...Regardless, I think it's a good idea to use a newer, released (not RC)
version in general, considering 5.1 is one major version behind
Agreed, but note that we don't have any factual evidence that the
Jetty RC that we use is indeed the cause
I have large TEI.2 docs that I am indexing. These are journal issuess
with all the typical sections in them. The main unit of organization
and interest is an article which I want to retrieve intact and display
(no problem there).
The question I'm working on is whether to index each article as it'
Thanks guys, that's what I figured.
Jamie
On 4/25/07, Yonik Seeley <[EMAIL PROTECTED]> wrote:
On 4/25/07, Jamie Orchard-Hays <[EMAIL PROTECTED]> wrote:
> If I have a multiValued field, will it always return all items in the
> array, or can I retrieve just those in the document with matching
> t
On 4/25/07, Jamie Orchard-Hays <[EMAIL PROTECTED]> wrote:
If I have a multiValued field, will it always return all items in the
array, or can I retrieve just those in the document with matching
text?
You always get all of them. Lucene does not return to you which field
matches a query.
Feature
The highlighting results will return fields with matching text, but
there is not a way to limit some multivalued fields from the returned
documents.
Jamie Orchard-Hays wrote:
If I have a multiValued field, will it always return all items in the
array, or can I retrieve just those in the doc
If I have a multiValued field, will it always return all items in the
array, or can I retrieve just those in the document with matching
text?
Thanks,
Jamie
On 4/25/07, Jack L <[EMAIL PROTECTED]> wrote:
I don't know for sure. But from the symptom, when error 404 happens,
solr seems to still work fine (so does that part of Jetty.) Then those
404'ed pages may have some solr specific logic in it?
I'm really not sure--I've built several long-running,
leading and trailing at the same time don't work. :( This is supposedly
fixed in a lucene nightly, but I can't get solr and lucene trunks to compile
together. Also, I wouldn't be able to convince anyone here to run nightly
trunks in production. :)
On 4/25/07, Walter Underwood <[EMAIL PROTEC
Enable leading wildcards and try this:
type:changelog AND filename:*angel*
wunder
On 4/25/07 1:34 PM, "Michael Kimsal" <[EMAIL PROTECTED]> wrote:
> Thanks. I'm still no results with your suggestion though. I also tried
>
> type:+changelog AND ( (filename:angel) OR (filename:angel*) OR
> (fi
Thanks. I'm still no results with your suggestion though. I also tried
type:+changelog AND ( (filename:angel) OR (filename:angel*) OR
(filename:*angel) )
but am getting parse errors. :(
On 4/25/07, Cody Caughlan <[EMAIL PROTECTED]> wrote:
What about:
(type:changelog) AND (filename:angel
What about:
(type:changelog) AND (filename:angel)
Or if you do the 3 different type of filename queries, use parenthesis
to properly break them up, e..g
type:changelog AND (filename:... OR filename:... OR filename:...)
I dont know enough about how Lucene's precedence rules, but you might
have
On Apr 25, 2007, at 3:27 PM, Mike Klaas wrote:
On 4/25/07, Jack L <[EMAIL PROTECTED]> wrote:
That is understood.
For people who are not familiar with Java servlet containers, like
myself, the embedded web server takes the least effort to set up.
And jetty is supposed be a production quality q
Hello all:
I'm trying to find a record in my index where the 'type' is changelog and
the 'filename' has 'angel' in it.
Expressing this as
type:changelog filename:+angel or filename:+angel* or filename:+*angel
throws a parse error (probably understandably)
type:changelog (filename:+angel or fil
Mike,
I don't know for sure. But from the symptom, when error 404 happens,
solr seems to still work fine (so does that part of Jetty.) Then those
404'ed pages may have some solr specific logic in it?
Regardless, I think it's a good idea to use a newer, released (not RC)
version in general, consid
On 4/25/07, Jack L <[EMAIL PROTECTED]> wrote:
That is understood.
For people who are not familiar with Java servlet containers, like
myself, the embedded web server takes the least effort to set up.
And jetty is supposed be a production quality quality package, it'll be
great that the default pa
Is there any way to make Solr not throw an Exception when unknown field
names are submitted as a part of an otherwise valid document? Ie. I
have field named 'foo' in my document but it's not in my schema. For
various bookkeeping / tracking purposes I need to annotate the documents
with extra info
On 4/25/07, Rushabh Doshi <[EMAIL PROTECTED]> wrote:
Unsubscribe
Ahh, http://www.pelago.com , that's were Darren went ;-)
Try the links on this page for unsubscribing:
http://lucene.apache.org/solr/mailing_lists.html
-Yonik
That is understood.
For people who are not familiar with Java servlet containers, like
myself, the embedded web server takes the least effort to set up.
And jetty is supposed be a production quality quality package, it'll be
great that the default package with jetty can be used for production.
--
Unsubscribe
UTF-16 support should not require any changes to the XML parsing.
All XML parsers are required to support that encoding. The real
change is implementing RFC 3023 (XML Media Types) so that the
encoding can be specified over HTTP.
wunder
On 4/23/07 11:13 AM, "Mike Klaas" <[EMAIL PROTECTED]> wrote:
On 4/25/07, Jack L <[EMAIL PROTECTED]> wrote:
> Are you running a Solr release, or a snapshot? It'd be interesting to
> know If you're running code that predates the fix done in SOLR-173. In
> my case, on the production system the code is older than that.
I'm running the 1.1.0 release.
Maybe i
Has anyone tried using solr over https?
Is there any reason why this might not be feasible?
Brian Beard
_
Mortgage refinance is Hot. *Terms. Get a 5.375%* fix rate. Check savings
https://www2.nextag.com/goto.jsp?product=10035&
On 4/25/07, Gal Nitzan <[EMAIL PROTECTED]> wrote:
When I search
Q=title:"dog%20da*"
...
Probably has to do with the way your "title" field is analyzed.
The best way to debug such problems is with the analyzer admin tool:
http://localhost:8983/solr/admin/analysis.jsp - that page will show
On 4/25/07, Jack L <[EMAIL PROTECTED]> wrote:
...Maybe it's time to think about upgrading Jetty...
It's in the pipeline, see https://issues.apache.org/jira/browse/SOLR-128
-Bertrand
Hi,
I'm new to Solr...
I'm trying to create an Auto Complete combo which is based on results from
Solr but I ran into a few problems which are related to the query.
The Schema field is:
What I try to do:
Q=title:"d*" # get all title which has the letter d followed by anything
Q=title:"do*"
Hello Bertrand,
>> ...solr stops functioning properly after running for a few days.
>> The symptom is search returning nothing, or when I go to /solr/admin/,
>> I get file browsing page showing a list of files (.css, etc),...
> Are your symptoms similar to those of
> https://issues.apache.org/jir
Ok, i will create an issue.
I got round it changing this
> : rsync -Wa${verbose}${compress} --delete ${sizeonly} \
> : ${stats} rsync://${master_host}:${rsyncd_port}/solr/${name}/
> : ${data_dir}/${name}-wip
for
> : rsync -Wa${verbose}${compress} --delete ${sizeonly} \
> : ${stats} ${master_ho
On 4/25/07, Jack L <[EMAIL PROTECTED]> wrote:
...solr stops functioning properly after running for a few days.
The symptom is search returning nothing, or when I go to /solr/admin/,
I get file browsing page showing a list of files (.css, etc),...
Are your symptoms similar to those of
https://i
I'm running the default solr package with my data, about 10 million
small documents. I'm not sure if it's jetty or solr, but often
times solr stops functioning properly after running for a few days.
The symptom is search returning nothing, or when I go to /solr/admin/,
I get file browsing page sh
Just path. for example.
i have a slaver and have 10 instances which name like solr1, solr2,solr3...
if solr support user define config file 's path..
i will use /usr/solrapp/conf/solr1_solrconfig.xml, solr2_solrconfig.xml,
solr3_solrconfig.xml...and so.
when i test these instance, i just stay
: i use solr multi instance, now i m testing solr and i find config file exist
: in divided directory.
:
: so i have to change path to modify config file.
:
: why not use user defined config file?
i'm not sure if i understand your question ... you want to be able to tell
Solr to use a different c
40 matches
Mail list logo