We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In v7 the http server is the main entrypoint into the database.
In v8 this has changed, as the client driver now uses pure tcp to query the database, splitting the protocol into internal and external modes.
internal
external
One of the things I've liked about canhazdb is how easily you can just point an http client to the database when developing, get query your database.
v8 will implement an optional (and none default) http query server. The syntax should be exactly the same as v7.
It should be implemented as a module and activated behand an option flag.
module
The text was updated successfully, but these errors were encountered:
#61 - Implement http server with get document and collection
b3fae20
#61 - Prevent starting http server when disabled
c6476d7
markwylde
No branches or pull requests
In v7 the http server is the main entrypoint into the database.
In v8 this has changed, as the client driver now uses pure tcp to query the database, splitting the protocol into
internal
andexternal
modes.One of the things I've liked about canhazdb is how easily you can just point an http client to the database when developing, get query your database.
v8 will implement an optional (and none default) http query server. The syntax should be exactly the same as v7.
It should be implemented as a
module
and activated behand an option flag.The text was updated successfully, but these errors were encountered: