Page 1 of 1

How often do the team_summary and user_summary files update?

Posted: Sun Nov 29, 2020 7:39 am
by agrikk
Is there a frequency with which the daily_user_summary.txt and daily_team_summary.txt files update? Or is the file created in real time with the latest statistics whenever someone downloads it?

I am rebuilding my stats page and I'm rethinking how often I should pull the data. Over the years I have pulled it at various frequencies and am wondering how frequently I should pull the data these days.

Re: How often do the team_summary and user_summary files upd

Posted: Sun Nov 29, 2020 8:00 am
by Joe_H
The last I heard was every 3 hours. At one time it was at once an hour, but there were problems with loads on the stats server.

Re: How often do the team_summary and user_summary files upd

Posted: Mon Nov 30, 2020 12:15 am
by bruce
Please be sure to pull the data from the flatfiles developed specifically for code like yours. A database search is VERY expensive.

Re: How often do the team_summary and user_summary files upd

Posted: Mon Nov 30, 2020 1:06 am
by agrikk
bruce wrote:Please be sure to pull the data from the flatfiles developed specifically for code like yours. A database search is VERY expensive.
I am pulling the flat files once every three hours and ingesting those flat files into a database and performing queries against that database if that's what you mean.

Re: How often do the team_summary and user_summary files upd

Posted: Mon Nov 30, 2020 1:55 am
by bruce
Yes. That's exactly what I mean.