You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That's maybe interesting to save, but why would we display posts by indexing date rather than by actual creation date? The CreateOp record also has a createdAt field, why don't we use it instead? This boils down to -
Add a new column for the new timestamp and populate it in the firehose subscription
Figure out a backfill strategy - take the existing indexedAt value? access the api and get the real value?
Change the feeds to order based on the new creation date column
The text was updated successfully, but these errors were encountered:
Right now, we only save the indexing timestamp of each post, i.e. the timestamp that we received the firehose message in:
bluesky-hebrew-feed/src/subscription.ts
Lines 19 to 27 in ea0ba26
That's maybe interesting to save, but why would we display posts by indexing date rather than by actual creation date? The CreateOp record also has a
createdAt
field, why don't we use it instead? This boils down to -The text was updated successfully, but these errors were encountered: