Sachin Singh
Sachin Singh

Reputation: 99

Restriction of solr results?

I am using alfresco-5.0.d and Solr 4. My question is "is there any restriction to fetch more then 1000 files at a time in alfresco".

I found one tutorial

http://fcorti.com/2013/05/01/alfresco-1000-results-lucene/

Can anyone verify the above or add more info about Solr4.

Upvotes: 0

Views: 458

Answers (2)

prignony
prignony

Reputation: 121

You might find an answer here:

Try to add theses two in your /shared/classes/alfresco-global.properties

  • system.acl.maxPermissionCheckTimeMillis=25000
  • system.acl.maxPermissionChecks=5000
  • solr.query.maximumResultsFromUnlimitedQuery=5000

Upvotes: 0

billerby
billerby

Reputation: 1978

That restriction does not apply to solr. However there is a restriction of 10000 rows returned by default and if you expect more results you should use the paging mechanism.

Upvotes: 1

Related Questions