-
Type: Bug
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 62
-
Component/s: Vocabularies
-
Backlog priority:800
-
Sprint:TGV 7.2-4, nxProduct-W6, nxProduct-W8, nxProduct-W10, nxNest Sprint 9.2.3
-
Story Points:2
Currently when a studio project defines a vocabulary it uses the former config pre-6.0 release so the cache config is not taken into account:
<directory ...> <cacheTimeout>3600</cacheTimeout> <cacheMaxSize>1000</cacheMaxSize> </directory>
See upgrades notes : NXP-14930
It should looks like
<extension target="org.nuxeo.ecm.core.cache.CacheService" point="caches"> <cache name="vocab-name-cache" class="org.nuxeo.ecm.core.cache.InMemoryCacheImpl"> <option name="maxSize">1000</option> <ttl>60</ttl><!-- minutes --> <option name="concurrencyLevel">500</option> </cache> <cache name="vocab-name-cache-without-references" class="org.nuxeo.ecm.core.cache.InMemoryCacheImpl"> <option name="maxSize">1000</option> <ttl>60</ttl><!-- minutes --> <option name="concurrencyLevel">500</option> </cache> <extension> <directory ...> <cacheEntryName>vocab-name-cache</cacheEntryName> <cacheEntryWithoutReferencesName>vocab-name-cache-without-references</cacheEntryWithoutReferencesName> </directory>
- is related to
-
NXP-22701 Unable to hot reload Studio
- Resolved
- is required by
-
NXP-14930 Integrate Unified cache with the Directory Service
- Resolved
-
NXP-22461 Fix error at shutdown on directory caches
- Resolved
-
NXP-22659 Apply new studio vocabulary core cache config to nuxeo default routing
- Resolved
-
NXP-22455 Fix error messages in directory tests missing bundle org.nuxeo.ecm.core.cache
- Resolved
-
NXS-4121 Don't declare again default workflow cache contribution
- Resolved