Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 803 Bytes

memory.rst

File metadata and controls

29 lines (20 loc) · 803 Bytes
.. automodule:: apscheduler.jobstores.memory

API

.. autoclass:: MemoryJobStore
    :show-inheritance:


Introduction

MemoryJobStore stores jobs in memory as-is, without serializing them. This allows you to schedule callables that are unreachable globally and use job non-serializable job arguments.

External dependencies none
Example examples/schedulers/blocking.py (view online).

Caution!

Unlike with other job stores, changes made to any mutable job arguments persist across job invocations. You can use this to your advantage, however.