Skip to content
Snippets Groups Projects
Commit 66b4faa8 authored by ocelot-inc's avatar ocelot-inc
Browse files

Fixes gh-1169 document fiber local storage

parent 2e62a974
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,8 @@ functions whose names end in "64" return a 64-bit number of nanoseconds.
The wall clock time. Derived from C function clock_gettime(CLOCK_REALTIME).
Approximately the same as os.clock().
This is the best function for knowing what the official time is,
as determined by the system administrator.
as determined by the system administrator. |br|
See also :func:`fiber.time64 <fiber.time64>`.
:return: seconds or nanoseconds since epoch (1970-01-01 00:00:00), adjusted.
:rtype: number or number64
......
......@@ -60,7 +60,7 @@ can be reused when another fiber is created.
> end
---
...
tarantool> fiber_object = fiber.create(fiber_name)
tarantool> fiber_object = fiber.create(function_name)
---
...
......@@ -299,6 +299,49 @@ can be reused when another fiber is created.
- error: fiber is cancelled
...
.. data:: storage
Local storage within the fiber. The storage can contain any number of
named values, subject to memory limitations. Naming may be done with
:samp:`{fiber_object}.storage.{name}` or :samp:`fiber_object}.storage['{name}'].`
or with a number :samp:`{fiber_object}.storage[{number}]`.
Values may be either numbers or strings. The storage is garbage-collected
when :samp:`{fiber_object}:cancel()` happens. |br|
See also :data:`box.session.storage <box.session.storage>`.
**Example:**
.. code-block:: tarantoolsession
tarantool> fiber = require('fiber')
---
...
tarantool> function f () fiber.sleep(1000); end
---
...
tarantool> fiber_function = fiber:create(f)
---
- error: '[string "fiber_function = fiber:create(f)"]:1: fiber.create(function, ...):
bad arguments'
...
tarantool> fiber_function = fiber.create(f)
---
...
tarantool> fiber_function.storage.str1 = 'string'
---
...
tarantool> fiber_function.storage['str1']
---
- string
...
tarantool> fiber_function:cancel()
---
...
tarantool> fiber_function.storage['str1']
---
- error: '[string "return fiber_function.storage[''str1'']"]:1: the fiber is dead'
...
.. function:: time()
:Return: current system time (in seconds since the epoch) as a Lua
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment