mysql2-semaphore
v1.0.0
Published
mysql2 fork of mysql-semaphore for clustered node instances using MySQL
Downloads
9
Readme
A mysql2 fork of the mysql-semaphore library for Node.js and MySQL. Allows you to generate a semaphore in a clustered Node.js environment using MySQL. This is useful for such things as cron jobs or long running tasks that you only want to occur on a single instance.
Requirements: MySQL server
Installation
npm install mysql2-semaphore --save
Initialization:
Refer to mysql2 (https://github.com/sidorares/node-mysql2) for MySql configuration settings.
var Semaphore = require('mysql-semaphore');
var semaphore = new Semaphore({host: 'localhost', database: 'mydb', user: 'someuser', password: 'somepassword'});
Before You Begin:
Be aware that this library requires that the lock name be unique for a particular usage. If another application uses the same lock name, a lock could be inadvertantly unlocked. It is recommended that the lock name include application and database name and usage to ensure uniqueness - for example: mydb_myapp_myprocess as the lockName parameter.
Methods:
Get Lock
semaphore.lock('test', 2) //test is the lock name
.then(function(didLock){
//didLock will be true if lock is successful, false if unable to attain a lock
console.log(didLock);
})
.catch(function(err){
console.log(err);
});
Release Lock
semaphore.unlock('test') //test is the lock name
.then(function(didUnlock){
console.log('unlocked!', didUnlock);
})
.catch(function(err){
console.log(err);
});
Check If Locked
semaphore.islocked('test') //test is the lock name
.then(function(isLocked){
console.log('islocked', isLocked);
})
.catch(function(err){
console.log(err);
})
Tests:
npm test