Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /usr/local/lib/node_modules/homebridge-config-ui-x/node_modules/semver-store/ drwxr-xr-x | |
| Viewing file: Select action/file-type: 'use strict'
const Benchmark = require('benchmark')
const suite = Benchmark.Suite()
const SemVerStore = require('./index')
const store1 = SemVerStore()
const store2 = SemVerStore()
store2
.set('1.1.1', 1)
.set('1.1.2', 1)
.set('1.1.3', 1)
.set('1.2.1', 1)
.set('1.2.2', 1)
.set('1.2.3', 1)
.set('2.1.1', 1)
.set('2.1.2', 1)
.set('2.1.3', 1)
.set('3.2.1', 1)
.set('3.2.2', 1)
.set('3.2.3', 1)
suite
.add('set', function () {
store1.set('1.2.3', 1)
})
.add('get', function () {
store1.get('1.2.3')
})
.add('get (wildcard)', function () {
store1.get('*')
})
.add('get (minor wildcard)', function () {
store1.get('1.x')
})
.add('get (patch wildcard)', function () {
store1.get('1.2.x')
})
.add('del + set', function () {
store1.del('1.2.3')
store1.set('1.2.3', 1)
})
.add('del (minor wildcard) + set', function () {
store1.del('1.x')
store1.set('1.2.3', 1)
})
.add('del (patch wildcard) + set', function () {
store1.del('1.2.x')
store1.set('1.2.3', 1)
})
.add('set with other keys already present', function () {
store2.set('1.2.4', 1)
})
.add('get with other keys already present', function () {
store2.get('1.2.4')
})
.on('cycle', function (event) {
console.log(String(event.target))
})
.on('complete', function () {})
.run()
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0047 ]-- |