Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
66b4faa8
Commit
66b4faa8
authored
9 years ago
by
ocelot-inc
Browse files
Options
Downloads
Patches
Plain Diff
Fixes gh-1169 document fiber local storage
parent
2e62a974
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/sphinx/reference/clock.rst
+2
-1
2 additions, 1 deletion
doc/sphinx/reference/clock.rst
doc/sphinx/reference/fiber.rst
+44
-1
44 additions, 1 deletion
doc/sphinx/reference/fiber.rst
with
46 additions
and
2 deletions
doc/sphinx/reference/clock.rst
+
2
−
1
View file @
66b4faa8
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
doc/sphinx/reference/fiber.rst
+
44
−
1
View file @
66b4faa8
...
...
@@ -60,7 +60,7 @@ can be reused when another fiber is created.
> end
---
...
tarantool> fiber_object = fiber.create(f
iber
_name)
tarantool> fiber_object = fiber.create(f
unction
_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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment