You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2015/06/29 12:58:02 UTC

incubator-tinkerpop git commit: Bump to version of gprof that supports groovy 2.4.x

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master 18cd7bcaa -> b2f127e7c


Bump to version of gprof that supports groovy 2.4.x

Added back profiling docs.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/b2f127e7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/b2f127e7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/b2f127e7

Branch: refs/heads/master
Commit: b2f127e7c07c84a3d4f3f31ab6c6ea0b5ed52799
Parents: 18cd7bc
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Mon Jun 29 06:57:08 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Mon Jun 29 06:57:08 2015 -0400

----------------------------------------------------------------------
 docs/src/gremlin-applications.asciidoc | 5 ++---
 gremlin-console/pom.xml                | 2 +-
 2 files changed, 3 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/b2f127e7/docs/src/gremlin-applications.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/gremlin-applications.asciidoc b/docs/src/gremlin-applications.asciidoc
index 6a38c4e..9d7655e 100644
--- a/docs/src/gremlin-applications.asciidoc
+++ b/docs/src/gremlin-applications.asciidoc
@@ -1032,15 +1032,14 @@ Benchmarking allows execution time comparisons of different pieces of code. Whil
 
 [gremlin-groovy,modern]
 ----
-:plugin use tinkerpop.sugar <1>
+:plugin use tinkerpop.sugar // Activate sugar plugin for use in benchmark
 benchmark{
  'sugar' {g.V(1).name.next()}
  'nosugar' {g.V(1).values('name').next()}
 }.prettyPrint()
+profile { g.V().iterate() }.prettyPrint()
 ----
 
-<1> Activate sugar plugin for use in benchmark
-
 [[describe-graph]]
 Describe Graph
 ^^^^^^^^^^^^^^

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/b2f127e7/gremlin-console/pom.xml
----------------------------------------------------------------------
diff --git a/gremlin-console/pom.xml b/gremlin-console/pom.xml
index adec1ef..cc0bd07 100644
--- a/gremlin-console/pom.xml
+++ b/gremlin-console/pom.xml
@@ -75,7 +75,7 @@ limitations under the License.
         <dependency>
             <groupId>org.gperfutils</groupId>
             <artifactId>gprof</artifactId>
-            <version>0.3.0-groovy-2.3</version>
+            <version>0.3.1-groovy-2.4</version>
         </dependency>
         <!-- TESTING -->
         <dependency>