我使用Everyman库将Cakephp与Neo4j一起使用。我想知道每个查询的时间吗?
非常感谢任何帮助。
提前致谢
答案 0 :(得分:1)
没有可以挂钩的EventDispatcher机制,顺便说一句,你可以在发送查询之前和之后使用microtime(true)来处理这个问题。
$start = microtime(true);
// you send your query
$end = microtime(true);
$diff = $end-$start;
echo 'query sent in '.$diff.' seconds';