You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-07-31 05:44:24 +03:00
* move all doctests from emb-examples branch * fix readme * add package-lock.json * --wip-- [skip ci] * fix: replace client.quit() with client.close() as quit is deprecated - doctests/cmds-hash.js - doctests/cmds-list.js - doctests/cmds-servermgmt.js - doctests/cmds-set.js * fix: replace client.quit() with client.close() as quit is deprecated - doctests/cmds-sorted-set.js - doctests/cmds-string.js - doctests/dt-bitfield.js - doctests/dt-bitmap.js * fix: replace client.quit() with client.close() as quit is deprecated - dt-bloom.js: replace client.quit() with client.close() - dt-cms.js: replace client.quit() with client.close() - dt-cuckoo.js: replace client.quit() with client.close() and update expected output comments to reflect v5 boolean returns - dt-geo.js: replace client.quit() with client.close() * fix(doctests): correct pfAdd return values and replace quit with close - Fix dt-hll.js: pfAdd returns 1 instead of true in comments and assertions - Fix dt-hash.js and dt-hll.js: replace deprecated client.quit() with client.close() * fix(doctests): correct API usage and return values in json and list examples - Fix dt-json.js: use options object for json.type, json.strLen, json.del, json.arrPop, json.objLen, json.objKeys - Fix dt-json.js: correct json.del return value from [1] to 1 - Fix dt-list.js: correct client initialization, return values (null, OK, 1), and error type - Replace deprecated client.quit() with client.close() in both files * fix(doctests): update dt-set.js and dt-ss.js for v5 compliance - Updated boolean return values to numbers for SISMEMBER and SMISMEMBER commands - Fixed client lifecycle to use client.close() instead of client.quit() - Removed unnecessary await from createClient() - Added order-independent assertions for set operations - Removed debug statement * fix(doctests): update deprecated methods and imports for v5 compliance - Fix dt-string.js: remove await from client creation and replace client.quit() with client.close() - Fix dt-tdigest.js: replace deprecated client.quit() with client.close() - Fix dt-topk.js: replace client.quit() with client.close() and fix output comment from [1, 0] to [true, false] - Fix query-agg.js: update @redis/search imports to use new constant names and replace client.disconnect() with client.close() * fix(doctests): update imports and replace deprecated disconnect with close - Replace SchemaFieldTypes/VectorAlgorithms with SCHEMA_FIELD_TYPE/SCHEMA_VECTOR_FIELD_ALGORITHM - Replace client.disconnect() with client.close() for consistent deprecation handling - Update query-combined.js, query-em.js, query-ft.js, and query-geo.js * fix(doctests): update imports and replace deprecated methods in remaining files - Update imports to use SCHEMA_FIELD_TYPE and SCHEMA_VECTOR_FIELD_ALGORITHM constants - Replace deprecated disconnect() and quit() methods with close() - Fix assertion in search-quickstart.js to use correct bicycle ID * fix(doctests): update cmds-generic.js and cmds-cnxmgmt.js for v5 compliance - Replace deprecated client.quit() with client.close() - Update sScanIterator to use collection-yielding behavior (value -> values) - Fix HSCAN API changes: tuples renamed to entries - Fix cursor type issues: use string '0' instead of number 0 for hScan - Fix infinite loop in scan cleanup by using do-while pattern * fix(doctests): update dt-streams.js object shapes and parameters for v5 compliance - Update stream result objects from tuple format to proper object format with id/message properties - Change xRead/xReadGroup results from nested arrays to objects with name/messages structure - Update xAutoClaim results to use nextId, messages, and deletedMessages properties - Add missing properties to xInfo* results (max-deleted-entry-id, entries-added, recorded-first-entry-id, entries-read, lag, inactive) - Modernize parameter names (count -> COUNT, block -> BLOCK, etc.) - Update MAXLEN/APPROXIMATE options to new TRIM object structure - Fix error message format for XADD duplicate ID error - Update boolean return values (True -> OK) --------- Co-authored-by: Nikolay Karadzhov <nkaradzhov89@gmail.com>
163 lines
4.5 KiB
JavaScript
163 lines
4.5 KiB
JavaScript
// EXAMPLE: ss_tutorial
|
|
// HIDE_START
|
|
import assert from 'assert';
|
|
import { createClient } from 'redis';
|
|
|
|
const client = createClient();
|
|
await client.connect();
|
|
// HIDE_END
|
|
|
|
// REMOVE_START
|
|
await client.flushDb();
|
|
// REMOVE_END
|
|
|
|
// STEP_START zadd
|
|
const res1 = await client.zAdd('racer_scores', { score: 10, value: 'Norem' });
|
|
console.log(res1); // >>> 1
|
|
|
|
const res2 = await client.zAdd('racer_scores', { score: 12, value: 'Castilla' });
|
|
console.log(res2); // >>> 1
|
|
|
|
const res3 = await client.zAdd('racer_scores', [
|
|
{ score: 8, value: 'Sam-Bodden' },
|
|
{ score: 10, value: 'Royce' },
|
|
{ score: 6, value: 'Ford' },
|
|
{ score: 14, value: 'Prickett' },
|
|
{ score: 12, value: 'Castilla' }
|
|
]);
|
|
console.log(res3); // >>> 4
|
|
// STEP_END
|
|
|
|
// REMOVE_START
|
|
assert.equal(res1, 1)
|
|
assert.equal(res2, 1)
|
|
assert.equal(res3, 4)
|
|
// REMOVE_END
|
|
|
|
// REMOVE_START
|
|
const count = await client.zCard('racer_scores');
|
|
console.assert(count === 6);
|
|
// REMOVE_END
|
|
|
|
// STEP_START zrange
|
|
const res4 = await client.zRange('racer_scores', 0, -1);
|
|
console.log(res4); // >>> ['Ford', 'Sam-Bodden', 'Norem', 'Royce', 'Castilla', 'Prickett']
|
|
// STEP_END
|
|
|
|
// REMOVE_START
|
|
assert.deepEqual(res4, ['Ford', 'Sam-Bodden', 'Norem', 'Royce', 'Castilla', 'Prickett'])
|
|
// REMOVE_END
|
|
|
|
// STEP_START zrange_withscores
|
|
const res6 = await client.zRangeWithScores('racer_scores', 0, -1);
|
|
console.log(res6);
|
|
// >>> [
|
|
// { value: 'Ford', score: 6 }, { value: 'Sam-Bodden', score: 8 },
|
|
// { value: 'Norem', score: 10 }, { value: 'Royce', score: 10 },
|
|
// { value: 'Castilla', score: 12 }, { value: 'Prickett', score: 14 }
|
|
// ]
|
|
// STEP_END
|
|
|
|
// REMOVE_START
|
|
assert.deepEqual(res6, [ { value: 'Ford', score: 6 }, { value: 'Sam-Bodden', score: 8 }, { value: 'Norem', score: 10 }, { value: 'Royce', score: 10 }, { value: 'Castilla', score: 12 }, { value: 'Prickett', score: 14 } ]
|
|
)
|
|
// REMOVE_END
|
|
|
|
// STEP_START zrangebyscore
|
|
const res7 = await client.zRangeByScore('racer_scores', '-inf', 10);
|
|
console.log(res7); // >>> ['Ford', 'Sam-Bodden', 'Norem', 'Royce']
|
|
// STEP_END
|
|
|
|
// REMOVE_START
|
|
assert.deepEqual(res7, ['Ford', 'Sam-Bodden', 'Norem', 'Royce'])
|
|
// REMOVE_END
|
|
|
|
// STEP_START zremrangebyscore
|
|
const res8 = await client.zRem('racer_scores', 'Castilla');
|
|
console.log(res8); // >>> 1
|
|
|
|
const res9 = await client.zRemRangeByScore('racer_scores', '-inf', 9);
|
|
console.log(res9); // >>> 2
|
|
|
|
// REMOVE_START
|
|
assert.equal(res8, 1)
|
|
assert.equal(res9, 2)
|
|
// REMOVE_END
|
|
|
|
const res10 = await client.zRange('racer_scores', 0, -1);
|
|
console.log(res10); // >>> ['Norem', 'Royce', 'Prickett']
|
|
// STEP_END
|
|
|
|
// REMOVE_START
|
|
assert.deepEqual(res10, ['Norem', 'Royce', 'Prickett'])
|
|
// REMOVE_END
|
|
|
|
// REMOVE_START
|
|
const count2 = await client.zCard('racer_scores');
|
|
console.assert(count2 === 3);
|
|
// REMOVE_END
|
|
|
|
// STEP_START zrank
|
|
const res11 = await client.zRank('racer_scores', 'Norem');
|
|
console.log(res11); // >>> 0
|
|
|
|
const res12 = await client.zRevRank('racer_scores', 'Norem');
|
|
console.log(res12); // >>> 2
|
|
// STEP_END
|
|
|
|
// STEP_START zadd_lex
|
|
const res13 = await client.zAdd('racer_scores', [
|
|
{ score: 0, value: 'Norem' },
|
|
{ score: 0, value: 'Sam-Bodden' },
|
|
{ score: 0, value: 'Royce' },
|
|
{ score: 0, value: 'Ford' },
|
|
{ score: 0, value: 'Prickett' },
|
|
{ score: 0, value: 'Castilla' }
|
|
]);
|
|
console.log(res13); // >>> 3
|
|
|
|
// REMOVE_START
|
|
assert.equal(count2, 3)
|
|
assert.equal(res11, 0)
|
|
assert.equal(res12, 2)
|
|
assert.equal(res13, 3)
|
|
// REMOVE_END
|
|
|
|
const res14 = await client.zRange('racer_scores', 0, -1);
|
|
console.log(res14); // >>> ['Castilla', 'Ford', 'Norem', 'Prickett', 'Royce', 'Sam-Bodden']
|
|
|
|
const res15 = await client.zRangeByLex('racer_scores', '[A', '[L');
|
|
console.log(res15); // >>> ['Castilla', 'Ford']
|
|
// STEP_END
|
|
|
|
// REMOVE_START
|
|
assert.deepEqual(res14, ['Castilla', 'Ford', 'Norem', 'Prickett', 'Royce', 'Sam-Bodden'])
|
|
assert.deepEqual(res15, ['Castilla', 'Ford'])
|
|
// REMOVE_END
|
|
|
|
// STEP_START leaderboard
|
|
const res16 = await client.zAdd('racer_scores', { score: 100, value: 'Wood' });
|
|
console.log(res16); // >>> 1
|
|
|
|
const res17 = await client.zAdd('racer_scores', { score: 100, value: 'Henshaw' });
|
|
console.log(res17); // >>> 1
|
|
|
|
const res18 = await client.zAdd('racer_scores', { score: 150, value: 'Henshaw' }, { nx: true });
|
|
console.log(res18); // >>> 0
|
|
|
|
const res19 = await client.zIncrBy('racer_scores', 50, 'Wood');
|
|
console.log(res19); // >>> 150.0
|
|
|
|
const res20 = await client.zIncrBy('racer_scores', 50, 'Henshaw');
|
|
console.log(res20); // >>> 200.0
|
|
// STEP_END
|
|
|
|
// REMOVE_START
|
|
assert.equal(res16, 1)
|
|
assert.equal(res17, 1)
|
|
assert.equal(res18, 0)
|
|
assert.equal(res19, 150.0)
|
|
assert.equal(res20, 200.0)
|
|
await client.close();
|
|
// REMOVE_END
|