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
Post a Comment