mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-10-07 22:57:07 +00:00
Cleanups
This commit is contained in:
@@ -12,37 +12,32 @@ const port = 3333;
|
||||
const username = process.argv[3] ? process.argv[3] : 'LambOfGod';
|
||||
const password = '';
|
||||
|
||||
let running = false;
|
||||
let run = (async(() => {
|
||||
if(!running) {
|
||||
try {
|
||||
running = true;
|
||||
const orbit = OrbitClient.connect(host, port, username, password);
|
||||
const channel = process.argv[2] ? process.argv[2] : 'testing123';
|
||||
const db = orbit.channel(channel);
|
||||
try {
|
||||
const orbit = OrbitClient.connect(host, port, username, password);
|
||||
const channel = process.argv[2] ? process.argv[2] : 'testing123';
|
||||
const db = orbit.channel(channel);
|
||||
|
||||
let count = 1;
|
||||
let count = 1;
|
||||
|
||||
setInterval(async(() => {
|
||||
const key = process.argv[4] ? process.argv[4] : 'greeting';
|
||||
let timer = new Timer(true);
|
||||
let v = db.get(key);
|
||||
setInterval(async(() => {
|
||||
const key = process.argv[4] ? process.argv[4] : 'greeting';
|
||||
let timer = new Timer(true);
|
||||
let v = db.get(key);
|
||||
|
||||
console.log("---------------------------------------------------")
|
||||
console.log("Key | Value")
|
||||
console.log("---------------------------------------------------")
|
||||
console.log(`${key} | ${v}`);
|
||||
console.log("---------------------------------------------------")
|
||||
console.log(`Query #${count} took ${timer.stop(true)} ms\n`);
|
||||
console.log("---------------------------------------------------")
|
||||
console.log("Key | Value")
|
||||
console.log("---------------------------------------------------")
|
||||
console.log(`${key} | ${v}`);
|
||||
console.log("---------------------------------------------------")
|
||||
console.log(`Query #${count} took ${timer.stop(true)} ms\n`);
|
||||
|
||||
count ++;
|
||||
running = false;
|
||||
}), 1000);
|
||||
} catch(e) {
|
||||
console.error("error:", e);
|
||||
console.error(e.stack);
|
||||
process.exit(1);
|
||||
}
|
||||
count ++;
|
||||
}), 1000);
|
||||
} catch(e) {
|
||||
console.error("error:", e);
|
||||
console.error(e.stack);
|
||||
process.exit(1);
|
||||
}
|
||||
}))();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user