Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/closeio/mongoengine
A Python Object-Document-Mapper for working with MongoDB
https://github.com/closeio/mongoengine
Last synced: 13 days ago
JSON representation
A Python Object-Document-Mapper for working with MongoDB
- Host: GitHub
- URL: https://github.com/closeio/mongoengine
- Owner: closeio
- License: mit
- Fork: true (MongoEngine/mongoengine)
- Created: 2012-08-23T23:02:20.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2024-09-18T11:19:38.000Z (about 2 months ago)
- Last Synced: 2024-09-18T15:44:51.867Z (about 2 months ago)
- Language: Python
- Homepage: http://mongoengine.org
- Size: 6.36 MB
- Stars: 38
- Watchers: 13
- Forks: 8
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
MongoMallard
============MongoMallard is a fast ORM-like layer on top of PyMongo, based on MongoEngine.
* Repository: https://github.com/elasticsales/mongoengine
* See [README_MONGOENGINE](https://github.com/elasticsales/mongoengine/blob/master/README_MONGOENGINE.rst) for MongoEngine's README.
* See [DIFFERENCES](https://github.com/elasticsales/mongoengine/blob/master/DIFFERENCES.md) for differences between MongoEngine and MongoMallard.Benchmarks
----------Sample run on a 2.7 GHz Intel Core i5 running OS X 10.8.3
MongoEngine 0.8.2 (ede9fcf)
MongoMallard (478062c)
Speedup
Doc initialization
52.494us
25.195us
2.08x
Doc getattr
1.339us
0.584us
2.29x
Doc setattr
3.064us
2.550us
1.20x
Doc to mongo
49.415us
26.497us
1.86x
Load from SON
61.475us
4.510us
13.63x
Save to database
434.389us
289.972us
2.29x
Load from database
558.178us
480.690us
1.16x
Save/delete big object to database
98.838ms
65.789ms
1.50x
Serialize big object from database
31.390ms
20.265ms
1.55x
Load big object from database
41.159ms
1.400ms
29.40x
See [tests/benchmark.py](https://github.com/elasticsales/mongoengine/blob/master/tests/benchmark.py) for source code.