You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by rv...@apache.org on 2013/01/30 17:25:28 UTC

svn commit: r1440506 - in /jena/trunk/jena-arq: ReleaseNotes.txt src/test/java/org/apache/jena/riot/system/TestAbbreviationPerformance.java

Author: rvesse
Date: Wed Jan 30 16:25:27 2013
New Revision: 1440506

URL: http://svn.apache.org/viewvc?rev=1440506&view=rev
Log:
Note recent changes in Release Notes

Modified:
    jena/trunk/jena-arq/ReleaseNotes.txt
    jena/trunk/jena-arq/src/test/java/org/apache/jena/riot/system/TestAbbreviationPerformance.java

Modified: jena/trunk/jena-arq/ReleaseNotes.txt
URL: http://svn.apache.org/viewvc/jena/trunk/jena-arq/ReleaseNotes.txt?rev=1440506&r1=1440505&r2=1440506&view=diff
==============================================================================
--- jena/trunk/jena-arq/ReleaseNotes.txt (original)
+++ jena/trunk/jena-arq/ReleaseNotes.txt Wed Jan 30 16:25:27 2013
@@ -20,6 +20,13 @@ ChangeLog for ARQ
 + JENA-345 : execConstructTriples() now excludes malformed triples (e.g. literal subjects) from it's output
 + Internal reorgansiation of packages
   org.openjena.atlas moved to org.apache.jena.atlas
++ PipedRDFStream and PipedRDFIterator replace RIOTParserPuller as method for getting
+  an iterator over parser output
++ PrefixMap is now an interface
+  Use PrefixMapFactory as the primary means of creating prefix maps
+  Abbreviation performance for common namespace patterns (/ or # terminated) much improved
++ New FastAbbreviatingPrefixMap, can be much faster for abbreviation when namespaces
+  do not follow common patterns
 
 ==== ARQ 2.9.4
 

Modified: jena/trunk/jena-arq/src/test/java/org/apache/jena/riot/system/TestAbbreviationPerformance.java
URL: http://svn.apache.org/viewvc/jena/trunk/jena-arq/src/test/java/org/apache/jena/riot/system/TestAbbreviationPerformance.java?rev=1440506&r1=1440505&r2=1440506&view=diff
==============================================================================
--- jena/trunk/jena-arq/src/test/java/org/apache/jena/riot/system/TestAbbreviationPerformance.java (original)
+++ jena/trunk/jena-arq/src/test/java/org/apache/jena/riot/system/TestAbbreviationPerformance.java Wed Jan 30 16:25:27 2013
@@ -104,22 +104,6 @@ public class TestAbbreviationPerformance
         test_amalgamated_performance(pmap, fmap, 1, false);
     }
 
-    //This test can go either way depending on machine conditions
-    
-//    /**
-//     * Expect {@link FastAbbreviatingPrefixMap} to outperform {@link PrefixMapStd} as soon as
-//     * there are a few namespaces
-//     */
-//    @Test
-//    public void prefixMap_abbrev_performance_02() {
-//        PrefixMapStd pmap = new PrefixMapStd();
-//        populate(pmap, 5);
-//        FastAbbreviatingPrefixMap fmap = new FastAbbreviatingPrefixMap();
-//        populate(fmap, 5);
-//
-//        test_amalgamated_performance(pmap, fmap, 5, true);
-//    }
-
     /**
      * Expect {@link FastAbbreviatingPrefixMap} to significantly outperform
      * {@link PrefixMapStd} once there are a good number of namespaces