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
There is a need to reduce execution time of reindex action and memory footprint of produced state object model.
Tasks below are defined according to research and analysis done before,
Redesign account history object structure and hold list of operations per given account instead of multiple account_history_object pairing account and the operation (Account History Optimizations #1949)
Eliminate unused indices created by follow_plugin data structures: feed_index: by_account, by_old_feed, blog_index. blog_index: by_old_blog. reputation_index: by_reputation. follow_count_index: by_followers, by_following (Eliminate Unused Indices #1950)
Review unique index usage - there shall be left only these unique indices where such uniqueness is defined by business logic. Correct item ordering shall be still still preserved by superfluous storing 'id' of the object together with actual key. Removing unneeded uniqueness can allow reduction of key definition which now must match to enforced uniqueness.
There is a need to reduce execution time of reindex action and memory footprint of produced state object model.
Tasks below are defined according to research and analysis done before,
feed_index
:by_account
,by_old_feed
,blog_index
.blog_index
:by_old_blog
.reputation_index
:by_reputation
.follow_count_index
:by_followers
,by_following
(Eliminate Unused Indices #1950)by_old
). (Eliminate Superfluous Indices and Use Reverser Iterators #1951)The text was updated successfully, but these errors were encountered: