I am working on building some pseudo-intelligent caching into a LINQ query provider. What I'd like to do (ideally) is use the expression tree of a given query as the cache key in some scenarios. However, I don't want to store the entire object graph itself, so what's a quick way to get a hashsum-like value from an expression tree? Or if I'm going in the wrong direction, is there a better option?
|
|
|
|
|
|
|
Um, actually I think this might be quite simple. The ToString() method of an Expression object will give you a textual representation of the Expression, you could hash that if all you want is to evaluate equivalency of a key. |
||
|
|
|
|
Let's think about this. Presumably you want to store (hash of expression tree, result) in a map. Without storing the whole tree, you can't distinguish between an identical tree and a hash collision. By definition, hashes map a larger set onto a smaller set (this is why a hash is useful), so by definition, you'll have (at least the possibility of) collisions. When you get an expression tree, you'll hash it and then go look up a result in your map, which leads to two possibilities:
Furthermore, even if it's not a collision, even if it is the exact same expression tree as the one you last saw, how do we know that the backing object -- a database, a list, whatever* hasn't had elements added or deleted or modified such that the result returned by the expression might be different than the cached result? That said, you can hash a tree recursively:
where OP is some operation (probably multiplication), or more generally Of course, this is the same recursion we use to evaluate an expression tree(expect we call |
||||||
|
