Skip to content

Commit 0fa9049

Browse files
committed
Update persistence doc
1 parent f131c83 commit 0fa9049

File tree

6 files changed

+33169
-7853
lines changed

6 files changed

+33169
-7853
lines changed

docs/4.persistence.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ can be configured and used by users.
3838
## Automated background saving
3939

4040
Skytable supports automated saving of data in the background, via `BGSAVE`. `BGSAVE`, runs every two minutes to flush all the data in the in-memory table onto disk, unless customized through the [configuration file](config-files/#an-example-configuration). BGSAVE is enabled by default and we don't recommend disabling it until you're sure that
41-
your hardware will never fail; it is likely that this will never be the case.
41+
your hardware will never fail; it is likely that this will never be the case. First BGSAVE will create a temporary
42+
file and then flush the current in-memory table onto disk. It will then replace the old `data.bin` file.
4243

4344
### Reliability of BGSAVE
4445

docusaurus.config.js

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ module.exports = {
2121
label: 'GitHub',
2222
position: 'right',
2323
},
24+
// {
25+
// href: '/versions',
26+
// label: 'Versions',
27+
// position: 'right'
28+
// },
2429
{
2530
type: 'docsVersionDropdown',
2631
position: 'left',
@@ -92,10 +97,23 @@ module.exports = {
9297
theme: {
9398
customCss: require.resolve('./src/css/custom.css'),
9499
},
100+
// docs: {
101+
// "routeBasePath" : '/',
102+
// "lastVersion": "current",
103+
// "versions": {
104+
// "current": {
105+
// "label": "0.6.0",
106+
// }
107+
// }
108+
// }
109+
// pages: {
110+
// 'path' : 'src/pages',
111+
// 'routeBasePath' : '/',
112+
// }
95113
},
96114
],
97115
],
98116
plugins: [
99117
// 'docusaurus-plugin-auto-sidebars'
100-
]
118+
],
101119
};

0 commit comments

Comments
 (0)