Re: Implementing a logout

2009-08-24 Thread Rahul R
*"release any SOLR resources" - no need.* My query is answered. Thank you. Regards Rahul On Mon, Aug 24, 2009 at 12:32 AM, Fuad Efendi wrote: > Truly correct: > > - SOLR does not create HttpSession for user access to Admin screens (do we > have any other screens of UI?) > - SolrCore is shared

RE: Implementing a logout

2009-08-23 Thread Fuad Efendi
Truly correct: - SOLR does not create HttpSession for user access to Admin screens (do we have any other screens of UI?) - SolrCore is shared object; closing it and reopening for each user session is extremely expensive; this object requires gigabytes of RAM in even simplest scenario User doesn't

Re: Implementing a logout

2009-08-23 Thread Rahul R
n one of many users (of > another > >> application) logs off? > >> > >> Usually one needs to clean up only user-session specific objects (such > as > >> non-persistent shopping cart)... > >> > >> > >> -Original Message- >

Re: Implementing a logout

2009-08-22 Thread Lance Norskog
age- >> From: Rahul R [mailto:rahul.s...@gmail.com] >> Sent: August-21-09 1:20 AM >> To: solr-user@lucene.apache.org >> Subject: Implementing a logout >> >> Hello, >> Can somebody give me some pointers on the Solr objects I need to clean >> up/relea

Re: Implementing a logout

2009-08-22 Thread Lance Norskog
- > From: Rahul R [mailto:rahul.s...@gmail.com] > Sent: August-21-09 1:20 AM > To: solr-user@lucene.apache.org > Subject: Implementing a logout > > Hello, > Can somebody give me some pointers on the Solr objects I need to clean > up/release while doing a logout on a Solr A

RE: Implementing a logout

2009-08-21 Thread Fuad Efendi
ginal Message- From: Rahul R [mailto:rahul.s...@gmail.com] Sent: August-21-09 1:20 AM To: solr-user@lucene.apache.org Subject: Implementing a logout Hello, Can somebody give me some pointers on the Solr objects I need to clean up/release while doing a logout on a Solr Application. I find that

Implementing a logout

2009-08-20 Thread Rahul R
Hello, Can somebody give me some pointers on the Solr objects I need to clean up/release while doing a logout on a Solr Application. I find that only the SolrCore object has a close() method. I typically do a lot of faceting queries on a large dataset with my application. I am using Solr 1.3.0. Re