by Kevweiser » Thu Dec 18, 2008 5:14 pm
Ok, this is strange. When I change the expression from '15 MINUTES' to '2 DAYS':
sum(if[holdem_hand_player_statistics.date_played > (now() - interval '2 DAYS'),1,0])
I can sit there and press the refresh button every couple of minutes and watch the number of hands decrease. I assume this is because there are more hands that are over 2 days old that are being filtered. Then I change the expression to:
sum(if[holdem_hand_player_statistics.date_played > (now() - interval '15 MINUTES'),1,0])
And I only see hands from a recent session... but it's from about an hour ago. So for some reason it does not work for minutes, but appears to be working for days. Any insight? Is the Cache only used for the HUD? I haven't tested this in the HUD yet.