top button
Flag Notify
Site Registration

RESTful interface to MongoDB

+2 votes
334 views

I am looking for a performance optimized RESTful interface to MongoDB. Ideally, the RESTful interface must be exposed by the mongod process itself.

I have looked into the various options documented at the MongoDB website, but none of them suits me. For example, I do not want to run a separate RESTful interface server on top of MongoDB.

I must be able to access MongoDB using RESTful, using a C++ RESTful client driver.

It would be great if anybody could help me out with some good information.

Thanks!

posted Jun 18, 2015 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

Since the mongodb process itself does not provide this, then the only solution is to run a RESTful process server.

The restserver in mongodb is a readonly process designed for monitoring tools only.

answer Jun 21, 2015 by anonymous
Similar Questions
+2 votes

how does MongoDB avoid the SQL injection mess? Is it just by nature of this query syntax?

0 votes

I need to access a MongoDB using a browser-based front-end or a front-end similar to that of Compass but with more features, that is, a front-end that would present the MongoDB fields to the user in a friendlier manner. Would anyone know of a RAD that would allow for a quick development of such front-end?

The MongoDB contains documents describing projects, each project is a document in the db and in this first phase, I need to enable users to view project details as needed and search for specific fields of projects.

...