RavenDB Embedded:数据存储在磁盘上的哪里?
使用 RavenDB 的 EmbeddableDocumentStore 时,数据存储在磁盘上的什么位置?
var documentStore = new EmbeddableDocumentStore { DataDirectory = "TestApp" };
DataDirectory 和磁盘位置之间是否存在关联?
更新:使用截至 2011-08-09 的最新版本。它是一个控制台应用程序,因此没有 ASP.NET 目录。
When using the EmbeddableDocumentStore 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它将使用的目录基于应用程序的当前目录或基目录(如果您使用 ~ 作为开始)
The directory it will use is based on the current directory of the application, or the base directory, if you use ~ as the start
您使用什么构建?在大约一个月前的构建中,此设置被忽略,并使用“Data”的默认目录。
What build are you using? In build from about a month ago this setting was ignored and the default directory of "Data" was used.