Unfortunately not, usually you can just run your queries upfront.

Or load nodes with relationships with a query like this:

match (n)-[r]->() 
where 
// if you also want to load node or relationship properties
has (n.foo) 
OR has (r.bar) 
return count(*)

Michael

Am 17.03.2014 um 11:18 schrieb Sotiris Beis <[email protected]>:

> Hi,
> 
> I executing some experiments with the neo4j graph database and i void to 
> eliminate the cold cache effects. Is there a way in terms of configuration to 
> do so?
> My code is in java and i use neo4j-2.0.1
> 
> Thanks,
> Sotiris
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Neo4j" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to [email protected].
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to