From: <tho...@us...> - 2011-01-05 14:02:14
|
Revision: 4056 http://bigdata.svn.sourceforge.net/bigdata/?rev=4056&view=rev Author: thompsonbry Date: 2011-01-05 14:02:07 +0000 (Wed, 05 Jan 2011) Log Message: ----------- Added the termCache capacity to the dump of interesting effective property values. Modified Paths: -------------- branches/QUADS_QUERY_BRANCH/bigdata-sails/src/java/com/bigdata/rdf/sail/bench/NanoSparqlServer.java Modified: branches/QUADS_QUERY_BRANCH/bigdata-sails/src/java/com/bigdata/rdf/sail/bench/NanoSparqlServer.java =================================================================== --- branches/QUADS_QUERY_BRANCH/bigdata-sails/src/java/com/bigdata/rdf/sail/bench/NanoSparqlServer.java 2011-01-05 13:57:49 UTC (rev 4055) +++ branches/QUADS_QUERY_BRANCH/bigdata-sails/src/java/com/bigdata/rdf/sail/bench/NanoSparqlServer.java 2011-01-05 14:02:07 UTC (rev 4056) @@ -386,6 +386,22 @@ + tripleStore.getMaxParallelSubqueries() + "\n"); /* + * And show some interesting effective properties for the KB, SPO + * relation, and lexicon relation. + */ + sb.append("-- Interesting KB effective properties --\n"); + + sb + .append(AbstractTripleStore.Options.TERM_CACHE_CAPACITY + + "=" + + tripleStore + .getLexiconRelation() + .getProperties() + .getProperty( + AbstractTripleStore.Options.TERM_CACHE_CAPACITY, + AbstractTripleStore.Options.DEFAULT_TERM_CACHE_CAPACITY) + "\n"); + + /* * And show several interesting properties with their effective * defaults. */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |