Distributed Storage of BLOBs for .NET?

前端 未结 5 1849
清歌不尽
清歌不尽 2021-02-02 15:10

I am looking for a reasonably well tested library+server to store a persistent distributed hash table.

I am hesistant to use SQL-based solutions as the data is highly d

5条回答
  •  孤城傲影
    2021-02-02 16:02

    I actually think you should consider SQL Server 2008. Store the data in a table with a varbinary(max) column, along with a column that contains the hash of that column. Index the hash, as you suggested.

    You'll then be able to use the various distribution features of the product.

提交回复
热议问题