Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wendelin.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Kirill Smelkov
wendelin.core
Commits
cbe6a003
Commit
cbe6a003
authored
Jun 28, 2018
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
25bc3f33
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
CHANGELOG.rst
CHANGELOG.rst
+7
-3
setup.py
setup.py
+1
-1
No files found.
CHANGELOG.rst
View file @
cbe6a003
...
...
@@ -4,17 +4,21 @@ Wendelin.core change history
2.0.0 (2018-XX-YY)
------------------
This is a major release that switches to using kernel virtual memory manager.
This is a major release that speeds up pagefault handling and reduces
wendelin.core RAM consumption dramatically:
The project switches to be mainly using kernel virtual memory manager.
Bigfiles are now primarily accessed with plain OS-level mmap to files from
synthetic WCFS filesystem. This removes overhead of handling pagefaults in
userspace and makes bigfile's cache (now it is the kernel's pagecache) to be
shared in between several processes.
Additionally
custom coherency protocol is provided, which allows clients
In addition a
custom coherency protocol is provided, which allows clients
that want to receive isolation guarantee ("I" from ACID) to still use the shared
cache and at the same time get bigfile view isolated from other's changes.
By default wendelin.core python client provides full ACID semantics as before.
By default wendelin.core python client continues to provide full ACID semantics as
before.
Please see wcfs.go__ for description of the new filesystem.
...
...
setup.py
View file @
cbe6a003
...
...
@@ -218,7 +218,7 @@ def readfile(path):
setup
(
name
=
'wendelin.core'
,
version
=
'
0.12
'
,
version
=
'
2.0.0.dev1
'
,
description
=
'Out-of-core NumPy arrays'
,
long_description
=
'%s
\
n
----
\
n
\
n
%s'
%
(
readfile
(
'README.rst'
),
readfile
(
'CHANGELOG.rst'
)),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment