Skip to content

Commit

Permalink
Updated Stream package install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
mumez committed Sep 22, 2024
1 parent 83eb44d commit e7f8ad0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 10 deletions.
27 changes: 18 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,50 +10,59 @@ However RediStick use [Stick](https://github.com/mumez/Stick) for supporting aut

## Installation

Default (Core only):
### Default (Core only)

```smalltalk
Metacello new
baseline: 'RediStick';
repository: 'github://mumez/RediStick/repository';
load.
```

With Connection-Pool package:
### With Connection-Pool package

```smalltalk
Metacello new
baseline: 'RediStick';
repository: 'github://mumez/RediStick/repository';
load: #('Core' 'ConnectionPool').
```

With Pubsub package:
### With Pubsub package

```smalltalk
Metacello new
baseline: 'RediStick';
repository: 'github://mumez/RediStick/repository';
load: #('Core' 'Pubsub').
```

With Stream package:
### With Stream package

```smalltalk
Metacello new
baseline: 'RediStick';
repository: 'github://mumez/RediStick/repository';
load: #('StreamObjects').
```

<details>
<summary>
stream low-level API only
</summary>

```smalltalk
Metacello new
baseline: 'RediStick';
repository: 'github://mumez/RediStick/repository';
load: #('Core' 'Stream').
```

With Search package:
</details>

```smalltalk
### With Search package

```smalltalk
Metacello new
baseline: 'RediStick';
repository: 'github://mumez/RediStick/repository';
Expand Down
2 changes: 1 addition & 1 deletion doc/Stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Redis Streams is a newer API for distributed streaming applications. Unlike Redi

## Installation

You can easily install StreamObjects packages into Pharo (or GemStone/S).
You can easily install StreamObjects packages into Pharo.

```smalltalk
Metacello new
Expand Down

0 comments on commit e7f8ad0

Please sign in to comment.