MongoEngine 0.8.0RC3 has been released - a few fixes over the original RC
Aiming for final at end of the week!On Wed, May 1, 2013 at 3:25 PM, dorian i <dorian...@gmail.com> wrote:
This broke flask_mongoengine :(
https://github.com/MongoEngine/flask-mongoengine/issues/42--
On Wednesday, May 1, 2013 12:13:27 PM UTC+2, Rozza wrote:Hi all,
MongoEngine 0.8 RC1 has been released today!I blogged about it here: http://rosslawley.co.uk/2013/05/mongoengine-0-dot-8-rc1-released/So please tweet and promote ;)As ever the documentation (http://docs.mongoengine.org) has all the information; changelogs and upgrade paths but any questions please don't hesitate to ask.
Cheers,
Ross
You received this message because you are subscribed to the Google Groups "MongoEngine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mongoengine-us...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
MongoEngine 0.8.0RC4 has been released.A tricky issue meant that I had to look to do more refactoring to querysets - see: https://github.com/MongoEngine/mongoengine/issues/311The upshot is we now cache the resultset of the query and we have reintroduced __len__ (which no longer calls .count() underneath as it did in 0.7.10). The most common use of len(queryset) is implicit when converting it to a list - eg list(queryset).So len(queryset) now it iterates the resultset and populates the cache. As such the following now only requires one query:for doc in queryset:print doc.namelen(queryset)