mac-cain13 / notificato

Takes care of Apple push notifications (APNS) in your PHP projects.
MIT License
224 stars 44 forks source link

Gateway shouldn't store all messages ever send #20

Closed mac-cain13 closed 11 years ago

mac-cain13 commented 11 years ago

When running in a daemon-like situation this could cause troubles as we consume more and more memory. We should only save the last 100 messages or so. We need the messages to recover from sending errors, but keeping the last 100 is plenty for that purpose, maybe 50 or even less will also work.

We should look into this.