Re: Notice: if u use php and get json style result from solr

2007-05-17 Thread James liu
2007/5/18, Chris Hostetter <[EMAIL PROTECTED]>: : : if u get null from json_decode($data),,,maybe ur $data have '@'fix way : is replace it before u do json_decode : : i try json_encode with php and json_decode with phpit is no problem when : i use '@' : : maybe it only happen encode(by j

Re: Custom HitCollector with SolrIndexSearcher and caching

2007-05-17 Thread Otis Gospodnetic
Hi, I think I follow what you said here. Let me check: It sounds like you are saying that pretty much all getDoc(List|Set)* methods would need to be modified to take an additional CompositeHitCollector (CHC) parameter, correct? Then I'd modify the following methods (these are the methods that

solr plugins

2007-05-17 Thread John Wang
Hi: Is there a way to hook in loading and initialization of the index while writing a solr plugin? Thanks -John

Re: Notice: if u use php and get json style result from solr

2007-05-17 Thread Chris Hostetter
: : if u get null from json_decode($data),,,maybe ur $data have '@'fix way : is replace it before u do json_decode : : i try json_encode with php and json_decode with phpit is no problem when : i use '@' : : maybe it only happen encode(by java) and decode(by php) this may be a bug in our J

Re: PriceJunkie.com using solr!

2007-05-17 Thread Chris Hostetter
: Also.. how do I get added to the Using Solr wiki page? Anyone can update the wiki, just click the Login link and create an account -- the edit controls will start showing up. -Hoss

Multiple collections of items

2007-05-17 Thread Phillip Farber
Hello, I'm yet another new solr user and I'll confess that I haven't read the documentation in great depth but hope someone can at least point me in the right direction. I have an application that manages documents in real-time into collections where a given document can live in more than o

Re: PriceJunkie.com using solr!

2007-05-17 Thread Matthew Runo
Wow. Those sound like some really great features, ones that I'd also love to use! What do we need to do to convince you to put them in the SOLR repo? ++ | Matthew Runo | Zappos Development | [EMAIL PROTECTED] | 702-943-7833 +---

Re: [ANN] acts_as_solr has a new home, please update

2007-05-17 Thread Otis Gospodnetic
Hi, Thiago, would it make sense to bring acts_as_solr under Solr at ASF/Lucene? I imagine you've already talked to Erik about this, but I'm curious... Thanks, Otis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Simpy -- http://www.simpy.com/ - Tag - Search - Share - Origi

Re: solr for corpus?

2007-05-17 Thread Otis Gospodnetic
Another thing that might be handy here is Token's often-forgotten type attribute. The current default is: String type = "word"; // lexical type But you can set it via the constructor, which is something you would do from the custom Analyzer/Tokenizer that Hoss is desc

Re: PriceJunkie.com using solr!

2007-05-17 Thread Tim Archambault
I did a search and noticed pages were executed through aspx. Are you using .net to parse the xml results from SOLR? Nice site, just trying to figure out where SOLR fits into this. On 5/16/07, Mike Austin <[EMAIL PROTECTED]> wrote: I just wanted to say thanks to everyone for the creation of sol

Re: system architecture question when using solr/lucene

2007-05-17 Thread Otis Gospodnetic
Hi Ajanta, I think you answered your own questions. Either use Filters or partition the index. The advantage of partitioning is that you can update them separately without affecting filters, cache, searcher, etc. for the other indices (i.e. no need to warm up with data from the other indices)

Re: Requests per second/minute monitor?

2007-05-17 Thread Otis Gospodnetic
I haven't looked nor tried your patch (just saw it come into JIRA) yet, but I would welcome having stats in one place and real-time instead of (really: in addition to) analyzing logs. Otis - Original Message From: Will Johnson <[EMAIL PROTECTED]> To: solr-user@lucene.apache.org Sent:

Re: PriceJunkie.com using solr!

2007-05-17 Thread Martin Grotzke
Very nice and really fast, congrats! Are you willing to provide the mentioned features to solr users? I think espacially the category to facet management (facet groups) is really useful... It would be very nice to have this problem solved once... :) Cheers, Martin On Wed, 2007-05-16 at 16:28 -0

Re: HTTP ERROR: 500: Unable to compile class for JSP

2007-05-17 Thread Laxmilal Menaria
Tools.jar is missing in jre folder.. On 5/17/07, Laxmilal Menaria <[EMAIL PROTECTED]> wrote: Thanks its now working, On 5/17/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: > > Check your path... the JRE (vs JDK version) is probably still being > picked up. > You could also try typing the full

Re: HTTP ERROR: 500: Unable to compile class for JSP

2007-05-17 Thread Laxmilal Menaria
Thanks its now working, On 5/17/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: Check your path... the JRE (vs JDK version) is probably still being picked up. You could also try typing the full path: C:\Program Files\Java\jdk1.6.0_01\bin\java -jar start.jar -Yonik On 5/17/07, Laxmilal Menaria <

Re: HTTP ERROR: 500: Unable to compile class for JSP

2007-05-17 Thread Yonik Seeley
Check your path... the JRE (vs JDK version) is probably still being picked up. You could also try typing the full path: C:\Program Files\Java\jdk1.6.0_01\bin\java -jar start.jar -Yonik On 5/17/07, Laxmilal Menaria <[EMAIL PROTECTED]> wrote: C:\>echo %JAVA_HOME% C:\Program Files\Java\jdk1.6.0_0

Re: HTTP ERROR: 500: Unable to compile class for JSP

2007-05-17 Thread Laxmilal Menaria
C:\>echo %JAVA_HOME% C:\Program Files\Java\jdk1.6.0_01 On 5/17/07, Laxmilal Menaria <[EMAIL PROTECTED]> wrote: Hello everyone, I am new to solr , I have tried to use solr. start.jar from examples, is successfully running, but when I opened http://localhost:8983/solr/admin/ then its give me

HTTP ERROR: 500: Unable to compile class for JSP

2007-05-17 Thread Laxmilal Menaria
Hello everyone, I am new to solr , I have tried to use solr. start.jar from examples, is successfully running, but when I opened http://localhost:8983/solr/admin/ then its give me the following exception, HTTP ERROR: 500 Unable to compile class for JSPGenerated servlet error: May 17, 2007 4:11:

Notice: if u use php and get json style result from solr

2007-05-17 Thread James liu
if u get null from json_decode($data),,,maybe ur $data have '@'fix way is replace it before u do json_decode i try json_encode with php and json_decode with phpit is no problem when i use '@' maybe it only happen encode(by java) and decode(by php) -- regards jl