Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sequelize-benchmark

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sequelize-benchmark - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

1

lib/index.js

@@ -81,4 +81,5 @@ 'use strict';

Utils.log('Benchmark finished');
return sequelize.close();
})
.catch(Utils.log);
};

8

package.json
{
"name": "sequelize-benchmark",
"version": "1.1.0",
"version": "1.2.0",
"description": "benchmark for sequelize orm",

@@ -33,8 +33,8 @@ "main": "index.js",

"dependencies": {
"benchmark": "^2.1.2",
"debug": "^2.4.5",
"benchmark": "^2.1.4",
"debug": "^3.1.0",
"lodash.defaults": "^4.2.0",
"lodash.samplesize": "^4.2.0",
"microtime": "^2.1.2"
"microtime": "^2.1.3"
}
}

@@ -20,2 +20,3 @@ ## Sequelize Benchmark

`SEQ_HOST`, Host addresss
`SEQ_PORT`, Host port
`SEQ_POOL_MAX`, Maximum concurrent connection

@@ -67,1 +68,14 @@ `SEQ_POOL_MIN`, Minimum concurrent connection

```
## Troubleshooting
### ECONNRESET when running mysql benchmark
In case you get ECONNRESET error when starting benchmark, try to increase `max_package_size` of your mysql server.
You can do this with query (it will work till reboot):
```
SET GLOBAL max_allowed_packet=1073741824;
```
or by editing mysql configuration.
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc