Skip to content

Commit d05fd00

Browse files
tamimajzeejersZach Sherbondy
authored
Maxlen support (#25)
* xadd-maxlen-support (#22) Co-authored-by: Zach Sherbondy <[email protected]> * Added reference to example apps for MAXLEN. * Upgraded Deps. * V1.3.0 --------- Co-authored-by: Zach <[email protected]> Co-authored-by: Zach Sherbondy <[email protected]>
1 parent 45d1873 commit d05fd00

File tree

9 files changed

+217
-197
lines changed

9 files changed

+217
-197
lines changed

examples/client-app/package-lock.json

+60-66
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/client-app/src/app.module.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@ import { ConfigModule, ConfigService } from '@nestjs/config';
1313
class ClassOptions {
1414
createRedisStreamClientModuleOptions(): ClientConstructorOptions {
1515
return {
16-
streams: { consumer: 'api-1', block: 5000, consumerGroup: 'api' },
16+
streams: {
17+
consumer: 'api-1',
18+
block: 5000,
19+
consumerGroup: 'api',
20+
// maxLen: 100,
21+
},
1722
connection: { url: '0.0.0.0:6379' },
1823
responseStreams: ['users:created', 'users:created:copy'],
1924
};

0 commit comments

Comments
 (0)