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
Valuable solve the problem of our data container. Currently by converting data into serde_json::Value, it has to be fully copied. According to our large_loop_helper benchmark, it takes 50% of time in that case.
The text was updated successfully, but these errors were encountered:
Update Context API to hold a borrowed reference of any T: Valuable, currently it owns a converted serde_json::Value
Update Registry render apis to accept T: Valuable instead of serde::Serialize
Update internal type system from serde_json::Value to valuable::Value, since valuable has more types than JSON, we may need to map between these types. Changes will happen in value
Context navigation API needs to be updated to use Valuable access APIs.
update modules related to rhai for exchange between Valuable and Dynamic
Introduction to valuable
Valuable solve the problem of our data container. Currently by converting data into
serde_json::Value
, it has to be fully copied. According to ourlarge_loop_helper
benchmark, it takes 50% of time in that case.The text was updated successfully, but these errors were encountered: