Delete firebase data older than 2 hours

后端 未结 5 838
太阳男子
太阳男子 2020-11-22 03:17

I would like to delete data that is older than two hours. Currently, on the client-side, I loop through all the data and run a delete on the outdated data. When I do this, t

5条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-22 03:59

    You could look into Scheduling Firebase Functions with Cron Jobs. That link shows you how to schedule a Firebase Cloud Function to run at a fixed rate. In the scheduled Firebase Function you could use the other answers in this thread to query for old data and remove it.

提交回复
热议问题