--
Otherwise it's time to do some debugging/tracing
Good Luck,
Leo
--
--
Findone is doing a linear search unless the query is by id: minimongo does not yet have indexes.
--
--
I think that {_id: this} might be less optimized than just putting the string in, ie Elements.findOne(this). (Obviously this should be improved.) (Also, there might be a slight issue where when a string is put into "this" it gets converted into a js "String Object", which is annoying thing that doesn't work how you expect, so you might need Elements.findOne(this.toString()) which converts back from "String Object" to "string literal".)
--
--
--