RavenDB Embedded: Where is the data stored on disk?
When using the Embeddabl开发者_开发知识库eDocumentStore for RavenDB, where does the data get stored on disk?
var documentStore = new EmbeddableDocumentStore { DataDirectory = "TestApp" };
Is there a correlation between DataDirectory and the disk-location?
Update: Used the latest build as of 2011-08-09. It's a console-app, so no ASP.NET directories.
The directory it will use is based on the current directory of the application, or the base directory, if you use ~ as the start
What build are you using? In build from about a month ago this setting was ignored and the default directory of "Data" was used.
精彩评论