Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
redis-enterprise-python
Advanced tools
Redis Enterprise API
Redis Labs clusters are a set of nodes, typically two or more, providing database services. Clusters are inherently multi-tenant, and a single cluster can manage multiple databases accessed through individual endpoints.
The Redis Labs REST API uses the JavaScript Object Notation (JSON) for requests and responses. Some responses may have an empty body, but indicate the response with standard HTTP codes. For more information, see RFC 4627 (http://www.ietf.org/rfc/rfc4627.txt) and www.json.org.
Both requests and responses may include zero or more objects. In case the request is for a single entity, the response shall return a single JSON object, or none. In case the request if for a list of entities, the response shall return a single JSON array with 0 or more elements. Requests may be delivered with some JSON object fields missing. In this case, these fields will be assigned default values (often indicating they are not in use).
The Redis Labs REST API supports the following HTTP headers:
Header | Supported/Required Values |
---|---|
Accept | application/json |
Content-Length | Length (in bytes) of request message. |
Content-Type | application/json |
The Redis Labs REST API supports the following HTTP headers:
Header | Supported/Required Values |
---|---|
Content-Type | application/json |
Content-Length | Length (in bytes) of request message. |
All RLEC API operations are versioned, in order to minimize the impact of backwards-incompatible API changes and to coordinate between different versions operating in parallel.
Authentication to RLEC API occurs via Basic Auth. Provide your RLEC username and password as the basic auth credentials. All calls must be made over SSL, to port 9443.
Example Request:
curl -u "demo@redislabs.com:password" https://localhost:9443/v1/bdbs
The following are common responses which may be returned in some cases regardless of any specific request.
Response | Condition / Required handling |
---|---|
503 (Service Unavailable) | Contacted node is currently not a member of any active cluster. |
505 (HTTP Version Not Supported) | An unsupported X-API-Version was used, see API Versions above. |
FAQs
Redis Enterprise API
We found that redis-enterprise-python demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.