-
Does it come up anywhere else? I already understand that logs are 'on-chain' storage (via the transaction receipts trie) for events which you can add to your contract code; topics are searchable indexed fields for those logs; and the logs bloom filter allows an efficient search of the block headers for the log topics, where you don't care about false positives. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Answer from @ajsutton: Probably not too useful to understand in detail as it a fairly standard bloom filter. It's not used anywhere else in Ethereum. Bloom filters are only useful if you can rule out a lot of stuff, they are less useful if you get higher hit rates. |
Beta Was this translation helpful? Give feedback.
Answer from @ajsutton:
Probably not too useful to understand in detail as it a fairly standard bloom filter. It's not used anywhere else in Ethereum.
Bloom filters are only useful if you can rule out a lot of stuff, they are less useful if you get higher hit rates.
Sizing bloom filters is difficult.