GithubHelp home page GithubHelp logo

kahdemlia's Introduction

kahdemlia

An asynchronous Clojure & Clojurescript implementation of the Kademlia distributed hash table.

CircleCI

Usage

(ns kad-dht
  (:require [clojure.core.async :refer [<! go-loop]]
             ; ^^ or cljs.core.async and cljs.core.async.macros if you are using CLJS
            [kahdemlia.core :refer [make-node!]]))

(let [{:keys [network-fn network-out-ch store-fn find-fn found-ch]}
      (make-node!)]
  (go-loop []
    (let [[dest msg] (<! network-out-ch)]
      ; SEND MESSAGE TO DESTINATION
      (recur)))
  (go-loop []
    (let [[key val] (<! found-ch)]
      ; HANDLE KEY LOOKUP
      (recur)))
  (def on-network-message network-fn)
  (def find find-fn)
  (def store! store-fn))

Development

Tests

Tests uses clojure.test for clojure and rhino via doo for clojurescript:

lein test

License

Copyright © 2017 Camilo Polymeris

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

kahdemlia's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

danome nyx-land

kahdemlia's Issues

kabel integration

Hey,

first of all great work. I am looking for a DHT implementation in pure Clojure(Script) to host on https://github.com/replikativ/kabel . I have recently ported the hitchhiker-tree to ClojureScript+core.async including a Merkle version datacrypt-project/hitchhiker-tree#30. I am currently thinking whether a combination of the hitchhiker tree for mutable metadata + the DHT might provide some very nice basis for replikativ. What are your plans for kahdemelia? I would love to see it work for simple immutable key lookups and provide a kabel network layer implementation then as a basis for replikativ then.

Best,
Christian

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.