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
Currently, event/object indices as well as variables and their bindings and so on are all represented as usize.
However, for most if not all realistic use cases a smaller representation would already suffice and would allow for constructing a large number of bindings.
It would be interesting to investigate if this could make sense using the following steps:
Abstract the underlying datatype as a generic type parameter (for event/object indices and for variables seperately.
Handle these generics in all execution functions, check how to best handle them in typescript type conversions etc.
Evaluate if the memory usage is observably different for simple and complex queries/constraints
Evaluate if the execution is observably different for simple and complex queries/constraints
The text was updated successfully, but these errors were encountered:
Currently, event/object indices as well as variables and their bindings and so on are all represented as usize.
However, for most if not all realistic use cases a smaller representation would already suffice and would allow for constructing a large number of bindings.
It would be interesting to investigate if this could make sense using the following steps:
The text was updated successfully, but these errors were encountered: