taevas
taevas
Close #403 Close #404
```javascript const nsq = require('./lib/nsq') const reader = new nsq.Reader('test', 'test', { nsqdTCPAddresses: [ '10.0.6.88:41501', ], }) reader.on('message', msg => { console.log('Received message [%s]: %s', msg.id, msg.body.toString()) msg.finish() }) reader.connect()...
Normal pause need only one balance, where the balance is always performed. ```javascript const nsq = require('./lib/nsq') const reader = new nsq.Reader('test', 'test', { nsqdTCPAddresses: [ '10.0.6.88:41501', ], }) reader.connect()...
```javascript const RRL = require('./lib/roundrobinlist'); const list = new RRL([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]); console.log(list.next(1)); // [ 1 ] console.log(list.next(-2)); // [ // 2, 3,...
push() returns the new length ```javascript const RRL = require('./lib/roundrobinlist'); const list = new RRL([1, 2, 3]); console.log(list.next()); console.log(list.next(2)); console.log(list.next(2)); console.log(list.add(5)); console.log(list.next(2)); // [ 1 ] // [ 2, 3...
## Describe the bug **Node.js version:** v22.11.0 **OS version:** MacOS 15.3.1 **koa-compress version:** 5.1.1 **Description:** `Accept-Encoding: identity;q=1, *;q=0` not work ## Actual behavior response with `Content-Encoding: gzip` ## Expected behavior...