i'm working on a gwt project, that uses mongoDB as database, and morphia framework to work with mongodb.
I already finished the basic dao of my classes and now i want to insert indexes in my classes to speedup the mongo searches.
I looked the morphia documentation, and i saw that haves a @Indexed that makes this, but i don't know how to really use the index in a search. The morphia will automatically use the index?
Does anyone have a good example of index in a real project ? (the hello world examples of mongodb site doesn't help to much)
== EDIT ==
Is recommended insert index only in embed fields ?