Memory and reference APIs
9. Memory API#
Memory is instance-partitioned. Each instance exclusively owns its memory.
No other instance can read or write to it. For :stateless Cores, the memory
backend handles concurrent access via atomic operations.
scaicore
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | |
9b. Reference API#
Reference data is read-only. Loaded at deployment, immutable at runtime.
Available to all instances of a Core. Accessed via reference.*:
scaicore
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | |
Cannot write: reference.faq.set(...) → CompileError