Skip to content

Commit

Permalink
Version 1.2.940
Browse files Browse the repository at this point in the history
- update zstd to 1.4.4
- update lz4 to 2.2.1
- use less memory for caches
- use bigger sqlite page for Blocks
  • Loading branch information
Sergey Dryabzhinsky committed Jan 18, 2020
1 parent 2ad4438 commit dd85fe4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2013 Sergey Dryabzhinsky <[email protected]>
Copyright (c) 2013-2020 Sergey Dryabzhinsky <[email protected]>
Copyright 2010 Peter Odding <[email protected]>.

Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The following shell commands show how to install and use the DedupFS file system
#
$ sudo pip3 install llfuse
#
# llfuse must be version 0.42+
# llfuse must be version 1.3.6
#
$ git clone https://github.com/sergey-dryabzhinsky/dedupsqlfs.git
#
Expand Down Expand Up @@ -155,6 +155,6 @@ The latest version of DedupSqlFS is available at <https://github.com/sergey-drya

This software is licensed under the MIT license.

© 2013-2019 Sergey Dryabzhinsky &lt;[email protected]&gt;.
© 2013-2020 Sergey Dryabzhinsky &lt;[email protected]&gt;.

© 2010 Peter Odding &lt;[email protected]&gt;.
4 changes: 2 additions & 2 deletions dedupsqlfs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
DedupFS is licensed under the MIT license.
Copyright 2010 Peter Odding <[email protected]>.
Copyright 2013-2017 Sergey Dryabzhinsky <[email protected]>.
Copyright 2013-2020 Sergey Dryabzhinsky <[email protected]>.
"""

__name__ = "DedupSQLfs"
# for fuse mount
__fsname__ = "dedupsqlfs"
__fsversion__ = "3.3"
# Future 1.3
__version__ = "1.2.939"
__version__ = "1.2.940"

# Check the Python version, warn the user if untested.
import sys
Expand Down
2 changes: 1 addition & 1 deletion dedupsqlfs/db/sqlite/table/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class TableBlock( Table ):

# Use bigger block for data
_page_size = 8192
_page_size = 1024*16

_table_name = "block"

Expand Down

0 comments on commit dd85fe4

Please sign in to comment.