Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a classifieds website... I have Solr doing the searching of the classifieds, and then return ID:nrs which I then use to put into an array. Then I use this array to find any classifieds in a MySql db where the ID:s match the ID:s in the array returned by Solr.

Now, because this array can be very very big (100thousand records or more) then I would need to "page" the results so that maybe 100 where returned at a time. And then use those 100 ID:s in MySql to find the classifieds.

So, is it possible to page with SOLR?

And if so, how? I need example code... And what the results would be please.

Mostly I need a thorough example!

Thanks

share|improve this question

3 Answers

up vote 1 down vote accepted

Take a look at IBM. Maybe that will get you on the right course.

Number of results: Specifies the maximum number of results to return.

Start: The offset to start at in the result set. This is useful for pagination.

So you probably want some variation on

<str name="rows">10</str>
<str name="start">0</str>

Your solr client should provide some way to get the total number of results without much trouble.

share|improve this answer

Paging is managed with the start and rows parameters, e.g.:

?q=something&rows=10&start=20

will give you 10 documents, starting at the document 20.

About getting other information from MySQL, you're on your own. Me and other people already suggested to you to store everything in Solr to avoid the additional queries to MySQL.

share|improve this answer
3  
I won't downvote, but using solr as a primary datastore can be a poor choice if any kind of transactional access is needed. Solr is a search server... It makes sense to put all your data in there for searching and viewing, but that doesn't mean there isn't transactional data that will have to come from and go to the database. – Zak Feb 25 '11 at 21:08
4  
@Zak: why do you assume he needs transactional access? Solr can work just fine as a primary datastore for many applications, when used correctly. As usual, use the right tool for the job. – Mauricio Scheffer Feb 25 '11 at 22:00
+1 thanks, this helped me, too. – BryceAtNetwork23 Aug 21 '12 at 14:46

I think that it is worth to say that solr returns together with the current page results a count of the total number of records found.

For example calling:

http://192.168.0.1:8983/solr/select?qt=edismax&fl=*,score&qf=content^2%20metatag.description^3%20title^5%20metatag.keywords^10&q=something&start=20&rows=10&wt=xml&version=2.2

The response is:

<response>
    <lst name="responseHeader">
        <int name="status">0</int>
        <int name="QTime">1</int>
        <lst name="params">
            <str name="fl">*,score</str>
            <str name="q">something</str>
            <str name="qf">content^2 metatag.description^3 title^5 metatag.keywords^10</str>
            <str name="qt">edismax</str>
            <str name="wt">xml</str>
            <str name="rows">10</str>
            <str name="version">2.2</str>
            </lst>
        </lst>
        <result name="response" numFound="1801" start="0" maxScore="0.15953878">
            <doc>...</doc>
            <doc>...</doc>
            <doc>...</doc>
...

Using solrj, the method query returns a SolrDocumentList that has the method: getNumFound().

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.