roadscape.
roadscape.
steempeak uses a json_md `hidden` flag to hide posts from user blogs: `{"app":"steempeak/1.14.0","format":"markdown","hidden":true,"tags":["test"]}`
Benefits of aggregation: - filter less raw notifications - better organization, density - informative re-engagement Notifications to aggregate: - all votes, or votes on a specific post (agg = voters,...
Potential sub-tasks of https://github.com/steemit/hivemind/issues/242 - `n.new_user` - welcome message - `o.message` - int messaging - `o.flag` - consider changing to `note` with `flag` attractive - `n.author_reward`, `n.curation_reward` (OR: claim_reward, with...
Check common calls and their response sizes. Identify if there are any low-impact methods to make responses smaller in size. Currently, `/trending` is approx 1,150,961 bytes: - 74% votes -...
During sync, writes to `hive_notifs` writes should be queued and flushed. ``` INFO:hive.utils.stats:Service: db -- 224s total (71.1%) INFO:hive.utils.stats: -pct- -ttl- -avg- -cnt- INFO:hive.utils.stats: 21.0% 47018ms 1.79 26199x -- INSERT...
On `recount` level post cache update, hive should add together child sums (and reflect visibility state). A bonus would be to track all vs. visible counts, and sanity-check all vs....
To reduce the amount of repeated work (and to even out the work done per block) we can update certain levels of the cached_post buffer over a n-block period. This...
There are occasionally posts missing in `hive_posts_cache`. This condition is rare but concerning. Fortunately it does not affect the `hive_posts` table so it's easily recoverable. Identifying the cause is important...
- more aggressive autovac (main goal: even out posts_cache maint work) - stricter cached post gap check (note: exceptions may be thrown) #173