Giter Site home page Giter Site logo

distributed-hash's Issues

Add logging to the server.

  1. Add logging to a logfile (or syslog?)
  2. Remove printing to STDERR and STDOUT (except on failure to start).

Additional requests in a single segment are ignored.

Consider:

(echo 'GET a' ; sleep 1 ; echo 'GET b') | nc -q1 localhost 1742
(echo 'GET a' ; echo 'GET b') | nc -q1 localhost 1742

The former is seen as two GET commands. In the latter case the second GET is discarded in a buffer after the first command is read.

Newlines should be trimmed from requests by the server

A trailing newline in a GET or PUT request is not trimmed by the server so it becomes part of the key or value. This could either be fixed or become a documented part of the network protocol. I lean towards the former because it feels to be the most likely expected behaviour for someone new to the project.

Consider the following output.

$ echo -n 'PUT a 123' | nc -q1 localhost 1742                                   
cmd: PUT                                                                        
key: a                                                                          
val: 123                                                                        

$ echo 'GET a' | nc -q1 localhost 1742                                          
cmd: GET                                                                        
key: a

len: 2
NOTEXISTS

$ echo -n 'GET a' | nc -q1 localhost 1742
cmd: GET
key: a
len: 1
EXISTS 3 123

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.