971cc1ebd84129d2d0f72ac2a8175c14208c1784
== Register a Function: ---- ./register.sh -n uppercase -f "f->f.map(s->s.toString().toUpperCase())" ---- == Run a Stream Processing Microservice using that Function: ---- ./stream.sh -i words -o uppercaseWords -f uppercase ---- == Run a REST Microservice using that Function: ---- ./web.sh -p /words -f uppercase ---- == Compose Functions: (assuming the `uppercase` function was already registered as above) ---- ./register.sh -n pluralize -f "f->f.map(s->s+\"S\")" ./web.sh -p /words -f uppercase,pluralize ---- (more docs soon)
Description
Languages
Java
99.5%
Shell
0.4%