• <bdo id='SiRvI'></bdo><ul id='SiRvI'></ul>
      <tfoot id='SiRvI'></tfoot>
    1. <i id='SiRvI'><tr id='SiRvI'><dt id='SiRvI'><q id='SiRvI'><span id='SiRvI'><b id='SiRvI'><form id='SiRvI'><ins id='SiRvI'></ins><ul id='SiRvI'></ul><sub id='SiRvI'></sub></form><legend id='SiRvI'></legend><bdo id='SiRvI'><pre id='SiRvI'><center id='SiRvI'></center></pre></bdo></b><th id='SiRvI'></th></span></q></dt></tr></i><div id='SiRvI'><tfoot id='SiRvI'></tfoot><dl id='SiRvI'><fieldset id='SiRvI'></fieldset></dl></div>

    2. <legend id='SiRvI'><style id='SiRvI'><dir id='SiRvI'><q id='SiRvI'></q></dir></style></legend>

      <small id='SiRvI'></small><noframes id='SiRvI'>

    3. 嵌入式非关系 (nosql) 数据存储

      Embedded non-relational (nosql) data store(嵌入式非关系 (nosql) 数据存储)

          <tbody id='O0XHD'></tbody>

          • <bdo id='O0XHD'></bdo><ul id='O0XHD'></ul>
          • <small id='O0XHD'></small><noframes id='O0XHD'>

            <legend id='O0XHD'><style id='O0XHD'><dir id='O0XHD'><q id='O0XHD'></q></dir></style></legend>

            <tfoot id='O0XHD'></tfoot>

          • <i id='O0XHD'><tr id='O0XHD'><dt id='O0XHD'><q id='O0XHD'><span id='O0XHD'><b id='O0XHD'><form id='O0XHD'><ins id='O0XHD'></ins><ul id='O0XHD'></ul><sub id='O0XHD'></sub></form><legend id='O0XHD'></legend><bdo id='O0XHD'><pre id='O0XHD'><center id='O0XHD'></center></pre></bdo></b><th id='O0XHD'></th></span></q></dt></tr></i><div id='O0XHD'><tfoot id='O0XHD'></tfoot><dl id='O0XHD'><fieldset id='O0XHD'></fieldset></dl></div>
              • 本文介绍了嵌入式非关系 (nosql) 数据存储的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我正在考虑为我的 Windows 桌面应用程序使用/实现某种嵌入式键值(或文档)存储.我希望能够存储各种类型的数据(GPS 轨迹就是一个例子),当然还能够查询这些数据.数据量很大,无法同时全部加载到内存中.

                I'm thinking about using/implementing some kind of an embedded key-value (or document) store for my Windows desktop application. I want to be able to store various types of data (GPS tracks would be one example) and of course be able to query this data. The amount of data would be such that it couldn't all be loaded into memory at the same time.

                我正在考虑使用 sqlite 作为键值存储的存储引擎,例如 y-serial,但用 .NET 编写.我还阅读了 FriendFeed 使用 MySQL 存储无模式数据,这是关于如何将 RDBMS 用于非关系数据的一个很好的指南.sqlite 似乎是一个不错的选择,因为它的简单性、可移植性和库大小.

                I'm thinking about using sqlite as a storage engine for a key-value store, something like y-serial, but written in .NET. I've also read about FriendFeed's usage of MySQL to store schema-less data, which is a good pointer on how to use RDBMS for non-relational data. sqlite seems to be a good option because of its simplicity, portability and library size.

                我的问题是嵌入式非关系存储是否还有其他选项?它不需要是可分发的,也不需要支持事务,但它必须可以从 .NET 访问,并且下载量应该很小.

                My question is whether there are any other options for an embedded non-relational store? It doesn't need to be distributable and it doesn't have to support transactions, but it does have to be accessible from .NET and it should have a small download size.

                更新:我发现了一篇标题为 SQLite as a Key-Value Database 将 sqlite 与 Berkeley DB 进行比较,后者是一个嵌入式键值存储库.

                UPDATE: I've found an article titled SQLite as a Key-Value Database which compares sqlite with Berkeley DB, which is an embedded key-value store library.

                推荐答案

                Windows 有一个内置的嵌入式非关系存储.它被称为 ESENT,被多个 Windows 应用程序使用,包括 Active Directory 和 Windows 桌面搜索.

                Windows has a built-in embedded non-relational store. It is called ESENT and is used by several Windows applications, including the Active Directory and Windows Desktop Search.

                http://blogs.msdn.com/windowssdk/archive/2008/10/23/esent-extensible-storage-engine-api-in-the-windows-sdk.aspx

                如果您想要 .NET 访问,您可以使用 CodePlex 上的 ManagedEsent 层.

                If you want .NET access you can use the ManagedEsent layer on CodePlex.

                http://managedesent.codeplex.com/

                该项目有一个 PersistentDictionary 类,该类实现了一个键值存储,该存储实现了 IDictionary 接口,但由数据库支持.

                That project has a PersistentDictionary class that implements a key-value store that implements the IDictionary interface, but is backed by a database.

                这篇关于嵌入式非关系 (nosql) 数据存储的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)
                How to store delegates in a List(如何将代表存储在列表中)
                Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)
                CreateDelegate with unknown types(具有未知类型的 CreateDelegate)
                Does Funclt;Tgt;.BeginInvoke use the ThreadPool?(Funclt;Tgt;.BeginInvoke 使用线程池吗?)
                How to create a delegate to an instance method with a null target?(如何为具有空目标的实例方法创建委托?)
                    <tbody id='e2c4y'></tbody>
                    <i id='e2c4y'><tr id='e2c4y'><dt id='e2c4y'><q id='e2c4y'><span id='e2c4y'><b id='e2c4y'><form id='e2c4y'><ins id='e2c4y'></ins><ul id='e2c4y'></ul><sub id='e2c4y'></sub></form><legend id='e2c4y'></legend><bdo id='e2c4y'><pre id='e2c4y'><center id='e2c4y'></center></pre></bdo></b><th id='e2c4y'></th></span></q></dt></tr></i><div id='e2c4y'><tfoot id='e2c4y'></tfoot><dl id='e2c4y'><fieldset id='e2c4y'></fieldset></dl></div>
                    <legend id='e2c4y'><style id='e2c4y'><dir id='e2c4y'><q id='e2c4y'></q></dir></style></legend>

                    <small id='e2c4y'></small><noframes id='e2c4y'>

                    <tfoot id='e2c4y'></tfoot>
                      • <bdo id='e2c4y'></bdo><ul id='e2c4y'></ul>