mongoengine icon indicating copy to clipboard operation
mongoengine copied to clipboard

A Python Object-Document-Mapper for working with MongoDB

Results 178 mongoengine issues
Sort by recently updated
recently updated
newest added

Hello, I have a somewhat different need/requirement in how I use mongoengine and wanted to share the below to get any ideas on how to deal with it. My requirement...

Proposal to address thread-safe db switching, as per: https://github.com/MongoEngine/mongoengine/issues/2685 Doesn't yet address thread-safe collection switching, but this could probably be considered in a similar way.

Awaiting Response

I am looking at logging changes to some of my documents for auditing. Based on Issue #589 the post_save signal is now being sent before the changed fields are being...

Enhancement
Question

I have a `LazyReferenceField` to a document class that I want to call methods on, but that does not work, because the `__getattr__` method of a `LazyReference` is implemented via...

Hi guys, We just run into an issue when archiving data from one collection into another using `switch_collection` in multi threaded environment (sample code we used below): ``` Python def...

Bug
Client/Connect

As per this long standing issue: https://github.com/MongoEngine/mongoengine/issues/788 It seems the original intent of these switching mechanisms was to support archiving or similar use-cases. However, more generally, I may just have...

This pull request introduces support for timeseries collections in MongoEngine, addressing issue #2661. With the addition of a 'timeseries' option in the Document meta dictionary, users can now easily create...

Related issue where this scenario was brought up: #21, #451 My response bringing it up again: https://github.com/MongoEngine/mongoengine/issues/451#issuecomment-414149971 To my knowledge (please correct me if I'm mistaken!) the signal patterns only...

connection for multiple db in same cluster created duplicate MongoClient

Solving: https://github.com/MongoEngine/mongoengine/issues/2756

Awaiting Response