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
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
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
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
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
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
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.
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
>