Changeset 4309


Ignore:
Timestamp:
01/21/14 10:34:21 (10 years ago)
Author:
twagoo
Message:

merged upgrade file from 2.18 branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlo/trunk/UPGRADE

    r4283 r4309  
    1515In both case all additional GET parameters SHOULD be kept.
    1616
    17 * Two mandatory configuration parameters have been added to the VLO
    18 configuration. Add the following to the existing configuration as a child of
    19 the VloConfig root node, then tweak as needed:
     17Next to the URL mapping, the XML parameter file has undergone some changes:
    2018
    21     <pagesInApplicationCache>128</pagesInApplicationCache>
     19    <!-- Sets the maximum number of page instances which will be stored in the application scoped second level cache for faster retrieval -->
     20    <pagesInApplicationCache>40</pagesInApplicationCache>
    2221   
    23     <sessionCacheSize>500</sessionCacheSize>
     22    <!-- Sets the maximum size (in KILOBYTES) of the File where page instances per session are stored. -->
     23    <sessionCacheSize>10000</sessionCacheSize>
     24
     25Has been added to tune the Wicket page cache. The first parameter allows you
     26to set the size of the application wide cache holding pages. The second parameter
     27denotes the size of the cache (in kilobytes) associated with a session. The values
     28listed above are the Wicket defaults.
     29
     30Other changes in the parameter file:
     31- maxFileSize and use MaxFileSize have been integrated into one parameter:
     32 
     33  maxFileSize
     34
     35  If equal to 0, no upper limit to the size of metadata input files will be
     36  applied.
     37
     38- maxDaysToLife has been renamed into maxDaysInSolr
     39
     40- VloHomeLink has been renamed into homeUrl
     41
     42- helpUrl has been added; a link to a help page.
     43
     44- The facetConceptsFile parameter, referencing the facetConcepts.xml file,
     45  has been added also. This is part of the effort of making parameterised
     46  instantiation of the VLO possible.
     47
     48- Also, the facetOverviewLength parameter has been added. This parameter controls
     49  the listing of facets on the search page.
     50
     51- Similar to 'useMaxFileSize' the expectReverseProxy parameter has been removed
     52
     53Finally,
     54
     55    <cqlEndpointFilter>http://cqlservlet.mpi.nl/</cqlEndpointFilter>
    2456   
    25     <helpUrl>
     57    <cqlEndpointAlternative>http://cqlservlet.mpi.nl/</cqlEndpointAlternative>
    2658
    27 * Remove useMaxFileSize parameter from VloConfig
    28 * Rename parameter maxDaysToLife to maxDaysInSolr
     59add the possibility of creating a filter for endpoints.
Note: See TracChangeset for help on using the changeset viewer.