Disk backed dictionary/cache for c#

前端 未结 10 919
無奈伤痛
無奈伤痛 2021-02-05 21:16

I\'m looking for a drop in solution for caching large-ish amounts of data.

related questions but for different languages:

  • Python Disk-Based Dictionary
10条回答
  •  Happy的楠姐
    2021-02-05 21:35

    I'd take the embedded DB route (SQLite, Firebird), but here are some other options:

    • Berkeley DB: not your standard SQL embedded DB, but seems to be the right choice for this kind of task, although not easily usable from .net
    • db4o: an OODB, very simple interface

提交回复
热议问题