Does MongoDB have a native REST interface?

后端 未结 7 1198
你的背包
你的背包 2020-12-03 01:13

I am currently evaluating Mongo and CouchDB for storing data points (analytics).

During my earlier interaction with CouchDB, I loved its JSONP based interface. I cou

相关标签:
7条回答
  • 2020-12-03 01:26

    No. But mongodb-rest is moving forward now.

    https://github.com/codecapers/mongodb-rest

    0 讨论(0)
  • 2020-12-03 01:27

    Edit

    Python Eve is a fantastic solution for this. I have found it very easy to use and highly configurable.

    Eve is an open source Python REST API framework designed for human beings. It allows to effortlessly build and deploy highly customizable, fully featured RESTful Web Services.

    Eve is powered by Flask, Redis, Cerberus, Events and offers support for both MongoDB and SQL backends [*].

    The codebase is thoroughly tested under Python 2.6, 2.7, 3.3, 3.4 and PyPy.

    It is as simple to get started as:

    from eve import Eve
    
    app = Eve()
    app.run()
    

    and to use as

    $ curl -i http://example.com/people
      HTTP/1.1 200 OK
    

    REST endpoint schemas are easily defined in a settings file.

    Original

    I haven't used it yet, but RESTHeart looks like an answer to this.

    From the documentation it looks easy to set up and use.

    0 讨论(0)
  • 2020-12-03 01:32

    Another option (shameless plug) is DrowsyDromedary.

    We developed Drowsy out of frustration with the other REST options for Mongo. Namely, we found that:

    Sleepy Mongoose is not really RESTful. It's a hacky HTTP interface that does not follow REST conventions; it doesn't use the standard REST HTTP methods, it doesn't use URLs to properly identify resources... We also found the options for limiting the maximum number of results (which is limited by default) rather confusing.

    mongodb-rest offers a proper REST interface, but we found it to be a pain in the ass to run. It would die regularly, and drove our sysadmin insane (who admittedly has little experience running node.js services).

    The built-in REST interface would have been great, but it being read-only means it's mostly useless for our needs.

    DrowsyDromedary, was developed to address many of the above issues:

    1. It provides a conventional REST interface, with support for the standard HTTP verbs (GET, POST, PUT, DELETE, PATCH).
    2. It's fairly easy to install and deploy (clone from github, install bundler, run bundle, and then rackup, and you're running). It can also be easily deployed under Apache or nginx.
    0 讨论(0)
  • 2020-12-03 01:34

    RESTHeart is a the new data REST API server part of the MongoDB ecosystem.

    It provides API for CRUD and data model operations, built-in authentication and authorization and supports CORS.

    It uses a standard representation format based on HAL+json with full support of the native mongodb data format via the strict mode representation of BSON.

    It is easy to setup and a docker container is available.

    RESTHeart is fast (see performance test result) and lightweight (~7 Mb footprint and ~200 Mb RAM peek usage).

    0 讨论(0)
  • 2020-12-03 01:40

    Not really. The mongod process includes a simple read-only REST interface for convenience. For full REST capabilities you need to use an external tool such as Sleepy.Mongoose.

    0 讨论(0)
  • 2020-12-03 01:43

    There is no full-blown REST interface to MongoDB, mainly because the server uses native binary protocol for efficiency. You can find few REST wrappers in official documentation (edit: MongoDB inc has now deleted this information):

    • RESTHeart (Java 8) is a the data REST API server part of the MongoDB ecosystem. RESTHeart uses a standard representation format based on HAL with full native mongodb data support via the strict mode representation of BSON. It provides API for CRUD and data model operations, built-in authentication and authorization and it supports CORS. It is easy to setup and a docker container is available. RESTHeart is also fast and lightweight (~7 Mb footprint and ~200 Mb RAM peek usage).
    • Sleepy Mongoose (Python) is a full featured REST interface for MongoDB which is available as a separate project.
    • Rest on Mongo for node.js. The older MongoDB Rest is no longer maintained.
    • Simple REST Interface The mongod process includes a simple read-only REST interface for convenience. For full REST capabilities we recommend using an external tool such as Sleepy.Mongoose.
    0 讨论(0)
提交回复
热议问题