corto icon indicating copy to clipboard operation
corto copied to clipboard

A hierarchical object store for connecting realtime machine data with web applications, historians & more

Results 28 corto issues
Sort by recently updated
recently updated
newest added

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...

enhancement
help wanted
Corto:Documentation
Corto:Tools

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`....

enhancement
Corto:TypeSystem
Corto:Performance

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} ```...

bug

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`)....

Corto:ObjectManagement
Corto:Usability

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...

bug

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...

bug
Corto:Mounts

(placeholder) Incorrect Environment Variables causing Installation Failure

bug

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...

enhancement