redis export keys

This commit is contained in:
Jan Prochazka
2022-03-27 12:57:44 +02:00
parent c0fdcf2fd1
commit 1f0ae98c88
5 changed files with 43 additions and 0 deletions

View File

@@ -180,6 +180,11 @@ module.exports = {
return this.loadDataCore('loadKeys', { conid, database, root });
},
exportKeys_meta: true,
async exportKeys({ conid, database, options }) {
return this.loadDataCore('exportKeys', { conid, database, options });
},
loadKeyInfo_meta: true,
async loadKeyInfo({ conid, database, key }) {
return this.loadDataCore('loadKeyInfo', { conid, database, key });