Code Monkey home page Code Monkey logo

kvs's People

Contributors

wooker avatar

Stargazers

 avatar

Watchers

 avatar

kvs's Issues

Writes are not synchronized between threads

Values for set sent by a client are not mutating the db entries.

For example, suppose we have key1 set to val1 initially. So, kvs-1.log file would look like:

{"Set":{"key":"key1","val":"val1"}}

Then let's mutate this get this key from the server:

cargo run --bin kvs-client get "key1"

which will return val1.

Now let's mutate the data:

cargo run --bin kvs-client set "key1" "val2"

If we try to get the value again it will yield the old data:

cargo run --bin kvs-client get "key1"

yields

val1

Client stalls on value not present in db

When a client sends a get request containing a key which is absent in db to the server, the server prints "NotFound" while the client waits for the reply that will not ever come.

Create benchmarks

Right now it is not clear if the thread pool works as expected.
It would be nice to create a benchmark comparing it to the rayon's thread pool.

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.