Documenting Docker

This commit is contained in:
Daniel Lemire 2019-07-11 16:20:24 +00:00
parent 47c6490115
commit 37fa6affc8
1 changed files with 12 additions and 0 deletions

View File

@ -440,6 +440,18 @@ make allparsingcompetition
Both the `parsingcompetition` and `allparsingcompetition` tools take a `-t` flag which produces
a table-oriented output that can be conventiently parsed by other tools.
## Docker
One can run tests and benchmarks using docker. It especially makes sense under Linux. A privileged access may be needed to get performance counters.
```
git clone https://github.com/lemire/simdjson.git
cd simdjson
docker build -t simdjson .
docker run --privileged -t simdjson
```
## Other programming languages
We distinguish between "bindings" (which just wrap the C++ code) and a port to another programming language (which reimplements everything).