c# - Does RavenDB internally optimise "get document by id" type of queries? -



c# - Does RavenDB internally optimise "get document by id" type of queries? -

when performing dynamic query, ravendb typically create temp index.

retrieving document id doesn't trigger behaviour:

var entity = documentsession.query<entity>().single(x => x.id == 1);

does ravendb have built-in optimisation type of query?

arnold, no, not optimize behavior.

c# ravendb

Comments

Popular posts from this blog

delphi - blogger via idHTTP : error 400 bad request -

c++ - cuda, pycuda -- how to write complex numbers -- errors:class "cuComplex" has no member "i" -

How do I check if an insert was successful with MySQLdb in Python? -