[Django]-Django cache loses keys

3👍

The maximum number of items allowed in the cache before old values are deleted for locmem, filesystem and database backends is 300. You can change it by setting OPTIONS > MAX_ENTRIES.

From the Django documentation:

MAX_ENTRIES: The maximum number of entries allowed in the cache before old values are deleted. This argument defaults to 300.

👤Selcuk

Leave a comment