Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tempsdb
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
public
tempsdb
Commits
407ffb8c
Commit
407ffb8c
authored
4 years ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
added `TimeSeries.descriptor_based_access`
parent
2f57c1e5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
README.md
+1
-0
1 addition, 0 deletions
README.md
setup.py
+1
-1
1 addition, 1 deletion
setup.py
tempsdb/series.pxd
+1
-1
1 addition, 1 deletion
tempsdb/series.pxd
tempsdb/series.pyx
+1
-1
1 addition, 1 deletion
tempsdb/series.pyx
with
4 additions
and
3 deletions
README.md
+
1
−
0
View file @
407ffb8c
...
...
@@ -30,6 +30,7 @@ You will need to have both snakehouse and satella installed.
*
more error conditions during mmap will be supported as well
*
ENOMEM will be correctly handled during resize operation
*
added
`TimeSeries.descriptor_based_access`
## v0.4.3
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
407ffb8c
...
...
@@ -28,7 +28,7 @@ if 'CI' in os.environ:
setup
(
name
=
'
tempsdb
'
,
version
=
'
0.4.4a
3
'
,
version
=
'
0.4.4a
4
'
,
packages
=
[
'
tempsdb
'
],
install_requires
=
[
'
satella>=2.14.23
'
,
'
ujson
'
],
ext_modules
=
build
([
Multibuild
(
'
tempsdb
'
,
find_pyx
(
'
tempsdb
'
)),
],
...
...
This diff is collapsed.
Click to expand it.
tempsdb/series.pxd
+
1
−
1
View file @
407ffb8c
...
...
@@ -14,7 +14,7 @@ cdef class TimeSeries:
readonly
unsigned
int
block_size
readonly
unsigned
long
long
last_entry_ts
unsigned
int
page_size
bint
descriptor_based_access
readonly
bint
descriptor_based_access
list
chunks
dict
refs_chunks
# type: tp.Dict[int, int]
dict
open_chunks
# type: tp.Dict[int, Chunk]
...
...
This diff is collapsed.
Click to expand it.
tempsdb/series.pyx
+
1
−
1
View file @
407ffb8c
...
...
@@ -18,7 +18,7 @@ cdef class TimeSeries:
:ivar last_entry_synced: timestamp of the last synchronized entry (int)
:ivar block_size: size of the writable block of data (int)
:ivar path: path to the directory containing the series (str)
:ivar descriptor_based_access: are all chunks using descriptor-based access? (bool)
:ivar name: name of the series (str)
"""
cpdef
tuple
get_current_value
(
self
):
...
...
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