Skip to content
Fabien MARTY edited this page Dec 21, 2018 · 15 revisions

This a place to collaborate on Queue Server API for mfbus

mfbus module contains a "queue server".

With this service, you can push and pull queues through a REST api. It's not a storage service because all objects have a lifetime and could be automatically cleaned.

Concepts

namespace

A namespace is just a kind of bucket for yours blobs. It's a plain string (length < 64 characters). Allowed characters are alphanumeric ones [0-9a-zA-Z], . (dot), _ (underscore) and '-' (hyphen).

element

You can see element as a little (< 100 KB) binary file. It can be a text file, an image, a JSON or anything else. The service does not make any assumptions about the content of your elements. They are never altered.

lifetime

All elements have a lifetime (in seconds). The lifetime can be specific to each element even there is a default and a maximum value in global configuration.

Clone this wiki locally