def push_notification(msg: DocumentNotification,
                       event: str) -> None:
     cache_key = f'{CACHE_DOC_NOTIFICATION_PREFIX}{event}_{uuid.uuid4().hex}'
     ObjectStorage.update_or_create(
         key=cache_key,
         value_obj=msg)
 def put_to_db(key: str, value):
     ObjectStorage.update_or_create(key, value)