-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 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
Showing
4 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
# | ||
|
@@ -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 <[email protected]>. | ||
© 2013-2020 Sergey Dryabzhinsky <[email protected]>. | ||
|
||
© 2010 Peter Odding <[email protected]>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters