You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 years ago | |
---|---|---|
bin | 3 years ago | |
config | 3 years ago | |
docker/server | 3 years ago | |
src | 3 years ago | |
var | 3 years ago | |
.gitignore | 3 years ago | |
README.md | 3 years ago | |
docker-compose.yaml | 3 years ago |
README.md
zmq-fileserver
This is a simple fileserver written in PHP (7.4+) using ZeroMQ.
It requires ext-zmq
and PHP7.4+.
There are three executable files:
$ bin/server
runs the fileserver$ bin/command <arg1> <arg2> ...
sends a command to the server$ bin/query <arg1> <arg2> ...
sends a query to the server and returns the response
Commands
SAVE <namespace> <name> <contents>
saves a fileDELETE <namespace> <name>
deletes a file if it existsDELETE_ALL <namespace>
deletes an entire namespace
To save a file to the fileserver you can do:
$ bin/command SAVE my-project-namespace 1.html "<!DOCTYPE html><html>...</html>"
$ bin/command SAVE my-project-namespace 2.xml "$(cat some/xml/file)"
Queries
CONTAINS <namespace> <name>
returnsY
if the file exists in the namespace, elseN
LOAD <namespace> <name>
returns the file contents if it exists, else-1
To load a file from the fileserver you can do:
$ bin/query LOAD my-project-namespace 1.html
Configuration
See config/config.ini
. It contains an example configuration.