Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zshipko/resp
OCaml library for building clients and servers that communicate using the Redis Serialization Protocol
https://github.com/zshipko/resp
Last synced: about 1 month ago
JSON representation
OCaml library for building clients and servers that communicate using the Redis Serialization Protocol
- Host: GitHub
- URL: https://github.com/zshipko/resp
- Owner: zshipko
- License: isc
- Created: 2018-09-26T00:11:20.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-11-06T19:30:21.000Z (about 3 years ago)
- Last Synced: 2023-08-27T00:34:28.617Z (about 1 year ago)
- Language: OCaml
- Homepage:
- Size: 225 KB
- Stars: 12
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE.md
Awesome Lists containing this project
README
resp — REdis Serialization Protocol library for OCaml
-------------------------------------------------------------------------------
%%VERSION%%resp is an OCaml library for working with the [Redis Serialization Protocol](https://redis.io/topics/protocol).
It provides a pure-OCaml streaming interface for building clients and servers that communicate using RESP.resp is distributed under the ISC license.
Homepage: https://github.com/zshipko/resp
## Installation
resp can be installed with `opam`:
opam install resp
If you don't use `opam` consult the [`opam`](opam) file for build
instructions.## Documentation
The documentation and API reference is generated from the source
interfaces. It can be consulted [online][doc] or via `odig doc
resp`.[doc]: https://zshipko.github.io/resp
## Tests
In the distribution sample programs and tests are located in the
[`test`](test) directory. They can be built and run
with:dune runtest