Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been using MongoDB for a little tool that I'm building, but I have two problems that I don't know if I can "solve". Those problems are mainly related with having to start a MongoDB server (mongod).

The first is that I have to run two commands every time that I want to use it (mongod and my app's command) and the other is testing. For now, I'm using different collections for "production" and "test", but it would be better to have just an embedded / self-contained instance that I can start and drop whenever I want.

Is that possible? Or should I just use something else, like SQLite for that?

Thanks!

share|improve this question
1  
possible duplicate of Can mongodb be used as an embedded database? – maerics Feb 14 at 16:13
@maerics Thank you! I tried to find something here, but couldn't. So maybe there's no good way of doing that yet. I'll look for alternatives. – André Gil Feb 14 at 17:29
1  
MongoDB isn't designed to be run embedded. But you can fake it by making your application create a mongod child process which operates on a local --dbpath. – Philipp Feb 14 at 19:02

1 Answer

up vote 1 down vote accepted

We use this at work - https://github.com/flapdoodle-oss/embedmongo.flapdoodle.de - to fire up embedded Mongo for integration tests. Has worked really well.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.