Handling views with too many calls is hard. There exists no procedure to delete records periodically. This would be a very useful feature to delete records of logs periodically.
Solution:
we could have a variable called delete_log_days_period in LoggingMixin that is None by default. If the programmer wants to delete that view API log reports that are for before delete_log_days_period days before now, he set this variable to an integer. then records are deleted periodically.
Handling views with too many calls is hard. There exists no procedure to delete records periodically. This would be a very useful feature to delete records of logs periodically.
Solution:
we could have a variable called
delete_log_days_periodinLoggingMixinthat isNoneby default. If the programmer wants to delete that view API log reports that are for beforedelete_log_days_perioddays before now, he set this variable to an integer. then records are deleted periodically.