I'm following this example for creating a simple Web application using JAX-RS, MongoDB and Jackson mapper:
Modern Web Apps using JAX-RS, MongoDB, JSON, and jQuery | Architects Zone, by James Ward (2012-04-29), original source: jaxrsbars/README.md at master · jamesward/jaxrsbars · GitHub
Where should I call MongoDB's ensureIndex()
if I'd like to have some fields indexed?
You can call ensureIndex()
any time to start indexing fields. It's a blocking call so you will not be able to use the collection while the index is being built.
If you are looking for the function prototype to call from jackson, this might help:
You can also use the command db.example.ensureIndex( {<field>: 1 } )
at the mongo
shell to start the indexing procedure.