Giter Site home page Giter Site logo

Comments (4)

iapain avatar iapain commented on July 23, 2024

+1 we solved this problem by adding cache in queryset.

from mongoengine.

hmarr avatar hmarr commented on July 23, 2024

There has been a discussion about this at http://groups.google.co.uk/group/mongoengine-dev/browse_thread/thread/b75fdfaed1440997 - a concern is that documents can get pretty large (especially when you got lots of embedded document), so caching by default could be a memory hog. It seems like the most popular option would be to cache by default, but make it easy to disable the caching behaviour, like Django does.

from mongoengine.

iapain avatar iapain commented on July 23, 2024

You'r right about memory hog and since its mongo untill and unless there are lots of DBRef query read should be pretty similar to memcached read. Anyways there is always a work around by calling list() on queryset but then we lost Queryset method chainging on it and its not a recommended way.

@eykd try:
docs = list(Foo.objects())

from mongoengine.

eykd avatar eykd commented on July 23, 2024

The memory concerns make perfect sense, but since you're trying to mimic Django's QuerySet behavior and interface, the current behavior breaks the Principle of Least Surprise. This crucial difference should at least be clearly documented. It's not a completely foreign concept at least--mongoengine's QuerySets are to Django's as generator comprehensions are to list comprehensions. As long as the behavior is documented, then it's no more surprising than a generator "evaporating" after the first evaluation.

Also, something should be done about that exception. If it's going to act like a generator, it should merely evaporate, not explode. :)

from mongoengine.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.