Last active
July 28, 2017 22:53
-
-
Save Vanuan/14f59a389ca9a38f1459a6ce27872e82 to your computer and use it in GitHub Desktop.
RethinkDB http cache
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
const r = require('rethinkdb'); | |
class Cache { | |
constructor(dbName) { | |
this.dbName = dbName; | |
} | |
init() { | |
return this.prepareDb().then(conn => { this.conn = conn; }); | |
} | |
save(url, content) { | |
return r.table('cache').insert({ url, content }, { conflict: 'update'}).run(this.conn); | |
} | |
retrieve(url) { | |
if(!this.conn) throw 'no connection'; | |
return r.table('cache').get(url).run(this.conn).then(res => res && res.content); | |
} | |
finish() { | |
return this.conn.close(); | |
} | |
prepareDb() { | |
return r.connect({ | |
host: 'rethinkdb', | |
port: 28015, | |
}) | |
.then((conn) => { | |
return r | |
.dbCreate(this.dbName) | |
.run(conn) | |
.catch((err) => console.log('ignore db create error')) | |
.then(() => conn) | |
}) | |
.then(conn => { conn.use(this.dbName); return conn; }) | |
.then(conn => { return this.createTable(conn, 'cache', 'url').then(() => conn) }) | |
} | |
createTable(connection, tableName, primaryKey) { | |
return r | |
.tableCreate(tableName, { primaryKey: primaryKey }) | |
.run(connection) | |
.catch(err => { | |
if(!err.message.match('Table `' + this.dbName + '.' + tableName + '` already exists')) { | |
throw err; | |
} | |
}) | |
} | |
} | |
module.exports = Cache; |
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
/** | |
* Moves cache from node-persit format to RethinkDB | |
*/ | |
const fs = require('fs'); | |
const path = require('path'); | |
const r = require('rethinkdb'); | |
function getFiles(cacheLocation) { | |
return new Promise((resolve, reject) => { | |
fs.readdir(cacheLocation, function (err, arr) { | |
if(err) reject(arr); | |
resolve(arr); | |
}); | |
}); | |
}; | |
function pushToDb(conn, page) { | |
return r.table('cache').insert({url: page.key, content: page.value }).run(conn); | |
} | |
function promiseArrayLoop(arr, itemCb) { | |
return arr.reduce(function(promise, item, index, all) { | |
return promise.then(function() { | |
if(index % 10 === 0) { | |
console.log(Math.floor(index / all.length * 100) + '%'); | |
} | |
return itemCb(item); | |
}); | |
}, Promise.resolve()); | |
} | |
function parseFile(filename) { | |
var dir = '/data/cache2'; | |
var file = path.join(dir, filename); | |
return new Promise((resolve, reject) => { | |
fs.readFile(file, 'utf8', function (err, text) { | |
if (err) { | |
reject(err); | |
} | |
var input = JSON.parse(text); | |
resolve(input); | |
}); | |
}) | |
} | |
function convertFile(filename, db) { | |
return parseFile(filename).then((cacheItem) => { | |
return pushToDb(db, cacheItem); | |
}); | |
} | |
function convertLoop(db, cacheLocation) { | |
return getFiles(cacheLocation) | |
.then((files) => promiseArrayLoop(files, (filename) => convertFile(filename, db))) | |
.then(() => db); | |
} | |
function createTable(connection, tableName, primaryKey) { | |
return r | |
.tableCreate(tableName, { primaryKey: primaryKey }) | |
.run(connection) | |
.catch(err => { | |
if(!err.message.match('Table `mirror.' + tableName + '` already exists')) { | |
throw err; | |
} | |
}) | |
} | |
function prepareDb() { | |
return r.connect({ | |
host: 'rethinkdb', | |
port: 28015, | |
}) | |
.then((conn) => { | |
return r | |
.dbCreate('mirror') | |
.run(conn) | |
.catch((err) => console.log('ignore db create error')) | |
.then(() => conn) | |
}) | |
.then(conn => { conn.use('mirror'); return conn; }) | |
.then(conn => { return createTable(conn, 'cache', 'url').then(() => conn); }) | |
} | |
prepareDb().then((db) => convertLoop(db, 'path/to/cache')).then(db => db.close()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment