summaryrefslogtreecommitdiffstats
path: root/lib/App/BorgRestore/Settings.pm
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2017-04-02 23:58:04 +0200
committerFlorian Pritz <bluewind@xinu.at>2017-04-02 23:58:45 +0200
commit686623ab687cfd4aaa5b4c156faf65ee75ad4000 (patch)
tree3e01a536d8196f9aaa3e7da21bc2453c5c3b97dc /lib/App/BorgRestore/Settings.pm
parentd919cb733de7622835aa6148ed939051d67cb64f (diff)
downloadApp-BorgRestore-686623ab687cfd4aaa5b4c156faf65ee75ad4000.tar.gz
App-BorgRestore-686623ab687cfd4aaa5b4c156faf65ee75ad4000.tar.xz
Make sqlite cache size configurable
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'lib/App/BorgRestore/Settings.pm')
-rw-r--r--lib/App/BorgRestore/Settings.pm10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/App/BorgRestore/Settings.pm b/lib/App/BorgRestore/Settings.pm
index 564d0f8..eba5e9c 100644
--- a/lib/App/BorgRestore/Settings.pm
+++ b/lib/App/BorgRestore/Settings.pm
@@ -61,6 +61,14 @@ same string. The first regex that matches for a given file is used. This
setting only affects lookups, it does not affect the creation of the database
with --update-database.
+=item C<$sqlite_cache_size>
+
+Default: 102400
+
+The size of the in-memory cache of sqlite in kibibytes. This should be large
+enough to fit the database so that adding new backup data does not need to use
+the disk too much.
+
=back
=head2 Example Configuration
@@ -73,6 +81,7 @@ with --update-database.
{regex => "^/boot", replacement => ""},
{regex => "^/", replacement => "mnt/snapshots/root/"},
);
+ $sqlite_cache_size = 2097152;
=head1 LICENSE
@@ -86,6 +95,7 @@ our $cache_path_base = sprintf("%s/borg-restore.pl", $ENV{XDG_CACHE_HOME} // $EN
our @backup_prefixes = (
{regex => "^/", replacement => ""},
);
+our $sqlite_cache_size = 102400;
my @configfiles = (
sprintf("%s/borg-restore.cfg", $ENV{XDG_CONFIG_HOME} // $ENV{HOME}."/.config"),