Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
想象一个数据库,其中有一个包含多个列的主表——主要是简单类型(文本/字符串、int 等)。表中有一个文本 blob 列。
我正在寻找一个数据库,它将表存储在一个文件中,然后将每个 blob 存储在硬盘驱动器上自己的文件中。我们正在数据库中寻找大约 100,000 条记录。
数据库需要可嵌入并在 Java 6 上运行。
在线搜索让我想到了 Derby 之类的东西,并自己管理 blob 文件的存储(对路径的引用)。我希望有更好的解决方案。