cancel
Showing results for 
Search instead for 
Did you mean: 

Number of pages in the INDEX:

sherrymax
Champ in-the-making
Champ in-the-making
Hi,

I have a question regarding the number of pages that will be generated while browsing into a directory with huge number of files. I hav a directory(Space) with 1500 files. And the number of items per page is set as 10. But still I cannot see the entire 150 pages in the page index shown at the bottom of the page.
I can see some 134 pages, but the same directory displays 95 pages in another PC. I've a few questions in this scenario.

1. Are we doing any caching kindof stuff while fetching the records. If so, where can I find the cache related info? Any property file or JAVA file?
2. Which project (Web-client/repository/remote-info…) is handling the section of fetching the records?
3. I am looking forward improving the performance in fetching this huge bulk of data, by reducing the time delay . Any idea how to proceed, or which area     or  java/property files to modify?

Please suggest.

Thanks,
Sherry.
1 REPLY 1

sherrymax
Champ in-the-making
Champ in-the-making
Hi,

After some hours of debugging, I found that some level of caching is done at the custom-repository.properties (or repository.properties) in C:\Alfresco\tomcat\webapps\Alfresco\WEB-INF\classes\alfresco. I modified some values as shown below in this property file:

#
# Properties to limit resources spent on individual searches
#
# The maximum time spent pruning results
system.acl.maxPermissionCheckTimeMillis=100000
# The maximum number of results to perform permission checks against
system.acl.maxPermissionChecks=10000

The bind() method of UIRichList.java in the WebClient project has the logic about fetching the data and dividing them among multiple pages as per the number of pages allowed.

The effort to improve the performance is going on… Smiley Happy

Sherry.