corto
corto copied to clipboard
A hierarchical object store for connecting realtime machine data with web applications, historians & more
This issue shall be the first line of knowledge capture for documenting questions raised by those who are learning Corto. @cortoproject/core, @cortoproject/collaborators, and others should capture questions below. The Corto...
Currently, when an object is being resumed into the in-memory store, its references are immediately resumed as well, typically as a result of serializers performing a `corto_lookup` or a `corto_resolve`....
When the following cortoscript code is parsed: ```corto int ref_i32: width_32, reference: true struct Point { x, y: ref_i32 } ref_i32 a, b: 10 Point p = {a, b} ```...
Currently, the `/` character is used as scope operator to indicate parent-child relationships in object identifiers (`foo/bar`). The dot operator `'.'` is used to address fields inside an object (`p.x`)....
Recursive queries do not produce correct results when the result includes objects from a mount that is mounted on a child of the `from` clause. The following code demonstrates the...
By default, serializers ignore fields that they don't recognize. This allows for parsing serialized data that contains fields that are not required by the process in which it is deserialized....
Currently when serializing a value with a reference to an object, the full object identifier will be serialized, as is returned by `corto_fullpath`. In many cases however that is not...
(placeholder) Incorrect Environment Variables causing Installation Failure
Currently when an application queries for an object, all members for the object are serialized (when a serialization format is specified). Often an application will not need all members, and...