Author: mduerig
Date: Wed Jun 15 15:09:22 2016
New Revision: 1748595

URL: http://svn.apache.org/viewvc?rev=1748595&view=rev
Log:
OAK-4451: Implement a proper template cache
Adjust issue reference in FIXME tag

Modified:
    
jackrabbit/oak/trunk/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/Segment.java
    
jackrabbit/oak/trunk/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/file/FileStore.java

Modified: 
jackrabbit/oak/trunk/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/Segment.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/Segment.java?rev=1748595&r1=1748594&r2=1748595&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/Segment.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/Segment.java
 Wed Jun 15 15:09:22 2016
@@ -152,7 +152,7 @@ public class Segment {
     /**
      * Template records read from segment. Used to avoid duplicate
      * copies and repeated parsing of the same templates.
-     * FIXME OAK-4373 move the template cache to the segment reader along side 
with the string cache
+     * FIXME OAK-4451 move the template cache to the segment reader along side 
with the string cache
      */
     @CheckForNull
     final ConcurrentMap<Integer, Template> templates;

Modified: 
jackrabbit/oak/trunk/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/file/FileStore.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/file/FileStore.java?rev=1748595&r1=1748594&r2=1748595&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/file/FileStore.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/file/FileStore.java
 Wed Jun 15 15:09:22 2016
@@ -233,7 +233,7 @@ public class FileStore implements Segmen
         this.revisions = builder.getRevisions();
         this.blobStore = builder.getBlobStore();
 
-        // FIXME OAK-4373 refactor cache size configurations
+        // FIXME OAK-4451 refactor cache size configurations
         // FIXME OAK-4277: Finalise de-duplication caches: inject caches
         // from the outside so we can get rid of the cache stat accessors
         if (builder.getCacheSize() < 0) {
@@ -250,7 +250,7 @@ public class FileStore implements Segmen
             }
         };
 
-        // FIXME OAK-4373 refactor cache size configurations
+        // FIXME OAK-4451 refactor cache size configurations
         // FIXME OAK-4451: Implement a proper template cache: inject caches
         // from the outside so we can get rid of the cache stat accessors
         if (builder.getCacheSize() < 0) {


Reply via email to