Loading…
![]() New source string testing_project / Documentation: reference/reference_lua/box_session/storage — English |
Loading…
![]() New source string testing_project / Documentation: reference/reference_lua/box_session/storage — English |
---
- 127.0.0.1:45129
...
tarantool> box.session.storage.random_memorandum = "Don't forget the eggs"
---
...
tarantool> box.session.storage.radius_of_mars = 3396
---
...
tarantool> m = ''
---
...
tarantool> for k, v in pairs(box.session.storage) do
> m = m .. k .. '='.. v .. ' '
> end
---
...
tarantool> m
---
- 'radius_of_mars=3396 random_memorandum=Don't forget the eggs. '
...