It probably also got swamped in real-time...
Do you mean it's not updated? You gotta sort by update_time column. Looks sorted, but you gotta sort it with a query like:
SELECT * FROM hackernews_history
ORDER BY update_time DESC
LIMIT 100;
And yeah, I got that from deepseek because I don't have a brain.
Do you mean it's not updated? You gotta sort by update_time column. Looks sorted, but you gotta sort it with a query like:
SELECT * FROM hackernews_history
ORDER BY update_time DESC
LIMIT 100;
And yeah, I got that from deepseek because I don't have a brain.