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
Partner chains noticed that they needed to add in the following two
indexes:
CREATEINDEXIF NOT EXISTS idx_ma_tx_out_ident ON ma_tx_out(ident);
CREATEINDEXIF NOT EXISTS idx_redeemer_tx_id ON redeemer(tx_id);
These help with performance using as an active bridge with Cardano to partnerchains. We've been manually applying these indexes but maybe these would be helpful for others if they were included by default?
The text was updated successfully, but these errors were encountered:
Quoting from #1349 (you'd find many other indexes too that may be relevant to some based on their usage patterns, but has adverse effect for those who dont neeed them)
Another option is to have "common" indexes be added as a config option in the config file.
Technically adding the index sits behind a flag, but what we couldn't provide is thorough support of new features affecting these indexes.
Partner chains noticed that they needed to add in the following two
indexes:
These help with performance using as an active bridge with Cardano to partnerchains. We've been manually applying these indexes but maybe these would be helpful for others if they were included by default?
The text was updated successfully, but these errors were encountered: