hinge
hinge copied to clipboard
A synonym for node. An evented framework for Common Lisp with API inspiration taken liberally from Node.js
This is another way to handle #15. Everything loads ok. I tested successfully the http example just in case.
This fixes issue #15, so that hinge can be re-added to quicklisp
Please consider adding :description, :author and :license information to your ASDF system(s). This will greatly help Quicklisp users and make it easier for them to report bugs. More information: http://blog.quicklisp.org/2015/05/looking-for-more-metadata.html...
When I run `make develop' (CentOS 6.4 x86_64) with the latest hinge cloned off of github, at some point make produces the following: ``` make[1]: Entering directory `/home/icon/tools/hinge/vendor' => Updating...
Need basic async APIs for - File open - File read - File write - File rename This ticket should also implement the stat watcher from libev and include an...
Hinge needs an Async HTTP client. It should be modeled somewhat on the [node.js http.request](http://nodejs.org/api/http.html#http_http_request_options_callback). Any state machines that can be reused from the HTTP parser should be reused, like...
Right now the `on-read` callback for a `zmq-socket` drains the 0MQ socket in a blocking function in the I/O callback until the read would block before returning from the callback....
The `socket`, `server` and `zmq-socket` classes lack nicer wrappers for setting socket options, backlog settings and zmq_socket options without reaching into the wrapping class to the underlying handle. These methods...
Right now the `socket` `on-write` callback writes a single buffer to the wire even when multiple writes are queued regardless of the size, this causes less than optimal write performance...
Right now there is no case designed for receiving a stream of multipart ZeroMQ messages.