Merge branch 'dev-bulkinsertsignal' of https://github.com/colinhowe/mongoengine into bulk
This commit is contained in:
commit
5dc998ed52
5 changed files with 65 additions and 4 deletions
|
|
@ -93,6 +93,7 @@ Changes in v0.5
|
|||
way the user has specified them
|
||||
- Fixed various errors
|
||||
- Added many tests
|
||||
- Added pre and post bulk-insert signals
|
||||
|
||||
Changes in v0.4
|
||||
===============
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ Signal support is provided by the excellent `blinker`_ library and
|
|||
will gracefully fall back if it is not available.
|
||||
|
||||
|
||||
The following document signals exist in MongoEngine and are pretty self explaintary:
|
||||
The following document signals exist in MongoEngine and are pretty self explanatory:
|
||||
|
||||
* `mongoengine.signals.pre_init`
|
||||
* `mongoengine.signals.post_init`
|
||||
|
|
@ -17,6 +17,8 @@ The following document signals exist in MongoEngine and are pretty self explaint
|
|||
* `mongoengine.signals.post_save`
|
||||
* `mongoengine.signals.pre_delete`
|
||||
* `mongoengine.signals.post_delete`
|
||||
* `mongoengine.signals.pre_bulk_insert`
|
||||
* `mongoengine.signals.post_bulk_insert`
|
||||
|
||||
Example usage::
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue