I am working django rest framework. I have to send notifications to user for some actions. I have a table called Notifications. I have stored all notifications in notification table. But, that table has lacks of instances(records).If i hit DB every time the loading of site will low and size of the DB will increase. We think notification is unnecessary table. Shall we move that particular table to aws s3 bucket? is it possible? Please tell best method to handle notification system.
Class Notifications(models.Model):
user = models.ForeignKey(User, ....)
.....
EX: I am asking that shall we store this table in aws in any other data formats for speed and less storage?