Reduce the number of Find API calls by grouping all the latest changes for indexation : send all the documents updated or deleted since the triggering of the task. Signed-off-by: Fabre Florian <ffabre@hybird.org>
34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
"""
|
|
Declare and configure the signals for the impress core application
|
|
"""
|
|
|
|
from functools import partial
|
|
|
|
from django.db import transaction
|
|
from django.db.models import signals
|
|
from django.dispatch import receiver
|
|
|
|
from . import models
|
|
from .tasks.search import trigger_batch_document_indexer
|
|
|
|
|
|
@receiver(signals.post_save, sender=models.Document)
|
|
def document_post_save(sender, instance, **kwargs): # pylint: disable=unused-argument
|
|
"""
|
|
Asynchronous call to the document indexer at the end of the transaction.
|
|
Note : Within the transaction we can have an empty content and a serialization
|
|
error.
|
|
"""
|
|
transaction.on_commit(partial(trigger_batch_document_indexer, instance))
|
|
|
|
|
|
@receiver(signals.post_save, sender=models.DocumentAccess)
|
|
def document_access_post_save(sender, instance, created, **kwargs): # pylint: disable=unused-argument
|
|
"""
|
|
Asynchronous call to the document indexer at the end of the transaction.
|
|
"""
|
|
if not created:
|
|
transaction.on_commit(
|
|
partial(trigger_batch_document_indexer, instance.document)
|
|
)
|