MEMOserv is a database server that uses the memodb database engine. Here are the basic operations you can perform using this server over HTTP.
To create a new collection, make a POST request to the path /collection_name. If the collection is created successfully, you will receive an HTTP 201 (Created) status. In case the collection already exists, you will receive an HTTP 304 (Not Modified) status.
GET http://localhost:3000/usuariosTo add a new document to a collection, make a POST request to the /collection_name path. You must include the document as JSON in the body of the request. If the document is successfully added, you will receive an HTTP 201 (Created) status along with the ID of the new document.
POST http://localhost:3000/usuarios
Content-Type: application/json
{
“first name”: “John”,
“last name”: “Perez”,
“age”: 30
}To get a list of all collections, make a GET request to the path /. You will receive an HTTP 200 (OK) status along with the list of collections.
GET http://localhost:3000/To get all documents in a specific collection, make a GET request to the path /collection_name/all. You will receive an HTTP 200 (OK) status along with a list of all documents in the collection.
GET http://localhost:3000/usuarios/allTo get a specific document by its ID, make a GET request to the path /collection_name/id. You will receive an HTTP 200 (OK) status along with the requested document. In case the document is not found, you will receive an HTTP 404 (Not Found) status.
GET http://localhost:3000/usuarios/1To search for documents in a collection based on certain criteria, make a GET request to the path /collection_name/find. You must include the search criteria as query parameters in the URL.
GET http://localhost:3000/usuarios/find?nombre=JuanTo delete a collection, make a DELETE request to the /collection_name path. Be sure to include an “amisure” header with the value “yes” to confirm the deletion. You will receive an HTTP 200 (OK) status if the collection is successfully deleted.
DELETE http://localhost:3000/usuarios
amisure: yesTo delete a specific document, make a DELETE request to the /collection_name/id path. You will receive an HTTP 200 status (OK) if the document is successfully deleted.
Note: it is not necessary to include an “amisure” header to confirm the deletion of a document. It is advisable not to use it to avoid accidental deletion of collections in case of error when creating the request.
DELETE http://localhost:3000/usuarios/1Now you're ready to start using MEMOserv to manage your data efficiently over HTTP!