When performing a dynamic query, RavenDB will typically create a temp index.

Retrieving document by its Id doesn't trigger this behaviour:

var entity = documentSession.Query<Entity>().Single(x => x.Id == 1);

Does RavenDB have a built-in optimisation for this type of query?

link|improve this question

1  
var entity = documentSession.Load<Entity>(1); Works without making a temporary index and is very fast I've found. – Phil Jan 30 at 11:17
feedback

2 Answers

up vote 4 down vote accepted

Arnold, No, it does not optimize this behavior.

link|improve this answer
feedback

Your assumption is wrong, because it will create a temp index. If your example its name should be "Temp/Entities/By__document_id"

link|improve this answer
Raven Studio shows no such index. – Arnold Zokas Jan 30 at 11:57
I just tried it - i have this index in my case. Maybe you have another index that already includes the Id property and thus the query optimizer will use this index instead of creating a new temp one. However, when you have a new and empty raven instance, it will create a temp index. – Daniel Lang Jan 30 at 13:33
In my case it doesn't create a temp index that would be visible in Raven Studio. Index name at runtime is "Dynamic/Entities" – Arnold Zokas Jan 30 at 14:06
That's strange unless you have no other indexes on Entities. I would need a running test if you still want us to find out what's going on here. – Daniel Lang Jan 30 at 15:33
I will create a pull request on Github – Arnold Zokas Jan 30 at 15:39
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.