Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
<dependency>
<groupId>com.celements</groupId>
<artifactId>calendar-web</artifactId>
<version>5.5</version>
<version>5.6-SNAPSHOT</version>
<type>war</type>
</dependency>
<dependency>
Expand All @@ -162,6 +162,11 @@
</dependency>

<!-- celements dependencies -->
<dependency>
<groupId>com.celements</groupId>
<artifactId>celements-performance</artifactId>
<version>5.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.celements</groupId>
<artifactId>celements-commons</artifactId>
Expand Down Expand Up @@ -205,7 +210,7 @@
<dependency>
<groupId>com.celements</groupId>
<artifactId>celements-search</artifactId>
<version>5.3</version>
<version>5.4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.celements</groupId>
Expand Down
20 changes: 0 additions & 20 deletions src/main/webapp/templates/celMacros/benchmark.vm

This file was deleted.

6 changes: 3 additions & 3 deletions src/main/webapp/templates/celMacros/debug/queryexec.vm
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@

<p><b>${query.language}-query</b> &mdash; <i>$query.statement</i></p>
<p>limit: $limit &mdash; printLimit: $printLimit </p>
#parse('celMacros/benchmark.vm') ## start benchmark
$services.bench.startBench()
#set($result = $query.execute())
<p>#bench('query execution time' true)</p>
<p>$services.bench.benchAndPrint('query execution time', true)</p>
<p>result count: $result.size() #if($limit > 0 && $result.size() >= $limit) (limited) #end</p>
<hr>
#if(!$noResultList)
Expand All @@ -65,7 +65,7 @@
</div>
#end
<hr>
<p>#bench('printing result list' true)</p>
<p>$services.bench.benchAndPrint('printing result list', true)</p>
#end ## noResultList

#end ## ("$!query" == '')
Expand Down