SOLR interface with PHP using javabin?

2010-09-16 Thread onlinespend...@gmail.com
I am planning on creating a website that has some SOLR search capabilities for the users, and was also planning on using PHP for the server-side scripting. My goal is to find the most efficient way to submit search queries from the website, interface with SOLR, and display the results back on

Re: SOLR interface with PHP using javabin?

2010-09-16 Thread onlinespend...@gmail.com
lient/ It has served my needs for the most part. On Thu, Sep 16, 2010 at 1:33 PM, Yonik Seeleywrote: On Thu, Sep 16, 2010 at 2:30 PM, onlinespend...@gmail.com wrote: I am planning on creating a website that has some SOLR search capabilities for the users, and was also planning on using P

Solr Distributed Search "start parameter" limitation

2011-02-01 Thread onlinespend...@gmail.com
If you look at the Solr wiki, one of the limitations of distributed searching it mentions is with regards to the start parameter. http://wiki.apache.org/solr/DistributedSearch#Distributed_Searching_Limitations "Makes it more inefficient to use a high "start" parameter. For example, if you request

access document by primary key

2011-03-11 Thread onlinespend...@gmail.com
what's the quickest and most efficient way to access a doc by its primary key? suppose I already know a document's unique id and simply want to fetch it without issuing a sophisticated query. Thanks, Ben

keeping data consistent between Database and Solr

2011-03-14 Thread onlinespend...@gmail.com
Like many people, Solr is not my primary data store. Not all of my data need be searchable and for simple and fast retrieval I store it in a database (Cassandra in my case). Actually I don't have this all built up yet, but my intention is that whenever new data is entered that it be added to my Ca

Re: keeping data consistent between Database and Solr

2011-03-15 Thread onlinespend...@gmail.com
andra. Solr + Cassandra. > > On 3/14/11 9:38 PM, "onlinespend...@gmail.com" > wrote: > >>Like many people, Solr is not my primary data store. Not all of my data >>need >>be searchable and for simple and fast retrieval I store it in a database >>(Cassandr

Re: keeping data consistent between Database and Solr

2011-03-15 Thread onlinespend...@gmail.com
7;m curious how you handle the delta-imports. Do you have some routine that periodically checks for updates to your MySQL database via the document ID? Which language do you use for that? Thanks, Ben On Tue, Mar 15, 2011 at 9:12 AM, Shawn Heisey wrote: > On 3/14/2011 9:38 PM, onlinespend.

Re: keeping data consistent between Database and Solr

2011-03-21 Thread onlinespend...@gmail.com
On Mon, Mar 21, 2011 at 10:57 AM, Shawn Heisey wrote: > On 3/15/2011 12:54 PM, onlinespend...@gmail.com wrote: > >> That's pretty interesting to use the autoincrementing document ID as a way >> to keep track of what has not been indexed in Solr. And you overwrite >