Tagged Questions

11
votes
4answers
328 views

Distributed Storage of BLOBs for .NET?

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 document oriented, consisting …
4
votes
3answers
445 views

java distributed cache for low latency, high availability

I've never used distributed caches/DHTs like memcached, jboss cache, ehcache, etc. I'm wondering which, if any, is appropriate for my use. First, I'm not doing web applications (as most of these …
4
votes
5answers
686 views

Simple enough explanation of a Distributed Hash Table (DHT)

Could any one give an explanation on how a DHT works. Nothing too heavy, just the basics.
2
votes
1answer
40 views

Which Python 2.x DHT implementation is going to be easiest to port to Python 3.x?

Previously I asked which DHT implementations are compatible with Python 3.x - StackOverflow's answer confirmed my worst fear: So far nobody has released a Python 3.x compatible Distributed Hash Table …
2
votes
2answers
133 views

The easiest DHT to implement

Which Distributed Hash Table (DHT) is easiest to implement in Python? Any good example that is not bloated? I not am looking for a definition of DHT because I am more oriented and focused on design …
2
votes
1answer
188 views

how to build one to many rows in tokyo cabinet?

i quote from the tokyo cabinet docs... As for database of hash table, each key must be unique within a database, so it is impossible to store two or more records with a key overlaps. or does …
2
votes
4answers
1k views

Persistent Binary Tree / Hash table in .Net

Hi, I need a pure .Net persistent hashtable/binarytree, functionally similar to berkeley-db Java edition. Functionally it should opperate in a similar maner to a DHT such memcached and velocity etc …
1
vote
4answers
377 views

How does DHT in torrents work?

I'm coding a p2p implementation that I would like to make decentralized however I'm having some trouble grasping how DHT in protocols like bittorrent work. How does the client know where the peers are …
0
votes
2answers
25 views

Recommendations for a data processing (MapReduce / DHT?) framework

I have a need to perform distributed searching across a largish set of small files (~10M) with each file being a set of key: value pairs. I have a set of servers with a total of 56 CPU cores …
0
votes
0answers
33 views

The most efficient DHT

What is the most efficient DHT? I am looking for name and/or some kind of implementation or related work, but I am not looking for the one that is most used. Efficient in terms of CPU execution …
0
votes
1answer
45 views

Which DHT implementations are compatible Python 3.x?

Following on from this question about DHTs in Python, my question is the same except that I'm developing on Python 3.x - I only want to know about implementations of the DHT concept which are known to …
0
votes
3answers
236 views

How does a DHT in a Bittorent client get “bootstrapped”?

If I have a torrent w/o any trackers in it, and I just started a bittorent client so I have no peers yet...how do I know who to first connect with in the DHT? It seems like I would have to know at …
0
votes
2answers
98 views

.Net implementation of DHT

Are there any open-source .Net implementations of distributed hash tables such as Chord, Pastry, Tapestry?
0
votes
1answer
117 views

Any examples of DHT based business app?

I would be interested in creating distributed business systems without a central server. A Distributed Hash Table as used in p2p programs looks like the most promising storage solution. Are there …