
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
pomelo-sync
Advanced tools
data sync module is simple sync memory data into store engine like mysql,redis,file.
#data-sync data sync module is simple sync memory data into store engine like mysql,redis,file.
As we known, updating data is very frequently in game application. Especial in MMORPG kind game. User game data,such as location,flood,equipment,etc. almost always change as time going. For the purpose of avoid such update action cost, we decide to keep a copy data in memory. And keep synchronized with a timer and log;
Data sync can support both timer call and instance invoke for the different situation. Most of time the developer don't pay attention to it;
Data sync also can support memory operation like NOSQL database such as redis,mongodb etc. most of time developer can seem as a memory database without transaction.
Data sync features include timer sync,set,get,mset,mget,hset,hget,incr,decr,flush,merger,showdown,info,etc. and the developer can extend it very easily.
##Installation
npm install pomelo-sync
##Usage
var opt = opt || {};
var updateUser = function(dbclient,val) {
console.log('mock save %j',val);
}
var dbclient = {};//db connection etc;
var id = 10001;
var optKey = 'updateUser';
var mapping = {}; //key function mapping
mapping[optKey]=updateUser;
opt.mapping = mapping;
opt.client = dbclient;
opt.interval = 2000;
var Sync = require('pomelo-sync');
var sync = new Sync(opt) ;
sync.exec(optKey,id,{name:'hello'});
##API ###sync.exec(key,id,val,cb) Add a object to sync for timer exec call back. ####Arguments
###sync.flush(key,id,val,cb) immediately synchronized the memory data with out waiting timer and will remove waiting queue data; ####Arguments
###sync.isDone get the db sync status when the queue is empty,it should return true;otherwise return false;
##Notice system default sync time is 1000 * 60, if you use mysql or redis sync,you should set options.client,the file sync is default but it doesn't load in current. Mysql OR mapping in this modules do not support,user should realize it self.
##ADD for more usage detail , reading source and benchmark and test case from source is recommended;
FAQs
data sync module is simple sync memory data into store engine like mysql,redis,file.
The npm package pomelo-sync receives a total of 7 weekly downloads. As such, pomelo-sync popularity was classified as not popular.
We found that pomelo-sync demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.