-1

I want to do an application in Scala, with a MongoDB database. I found some tutorials to use it with ReactiveMongo, I wrote my classes, but I want to test it and I don't understand how to do a simple request; to add a user for example, or find him.

What is the right method to use?

fedosov
  • 1,989
  • 15
  • 26
Azuken
  • 477
  • 1
  • 9
  • 26

2 Answers2

1

You could use the Activate framework. It supports ReactiveMongo with a simple usage interface for queries and modifications. Using it, is also easy to switch to other types of databases, like postgre and mysql.

http://activate-framework.org/

It uses transparent persistence with efficient memory usage, providing a simpler persistence paradigm with high scalability. Take a look at http://databen.ch

1

Do you want ReactiveMongo or just want to use mongodb on scala. If it's the lastest, try http://mongodb.github.io/casbah/tutorial.html

Is what we use in our projects...

caente
  • 141
  • 7