shalvah / RemindMeOfThisTweet

🤖 Twitter bot to set reminders for tweets.
https://remindmeofthis.app
GNU General Public License v3.0
414 stars 41 forks source link

view reminders #37

Closed sjorsvanheuveln closed 1 year ago

sjorsvanheuveln commented 1 year ago

Would be great to have a command that returns all outstanding reminders of my Twitter handle.

shalvah commented 1 year ago

Yeah, it would be. Unfortunately, that's almost certainly never happening. Reminders are stored in Redis, keyed by date/time. Searching for all reminders of a particular user will mean iterating through every key. Unfortunate design tradeoff: really efficient for scheduling reminders, but terrible for most other things.