Skip to content

Commit 2bc995b

Browse files
committed
docs: update README.md
1 parent 6c6f983 commit 2bc995b

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

README.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,12 @@ Though it is possible to clone the repo, Composer remains the best tool for inst
2828
$ composer require chemem/asyncify
2929
```
3030

31-
Newer versions of the library prioritize multithreading. The precondition for operationalizing multithreading is installing the [parallel](https://github.com/krakjoe/parallel) extension (`ext-parallel`) and [`react-parallel/runtime`](https://github.com/reactphp-parallel/runtime) library which can be done in a single step as in the snippet below.
31+
Newer versions of the library prioritize multithreading. The precondition for operationalizing multithreading is installing the [parallel](https://github.com/krakjoe/parallel) extension (`ext-parallel`) and [`react-parallel/runtime`](https://github.com/reactphp-parallel/runtime) library which can be done with the directives in the snippet below.
3232

3333
```sh
34-
$ pie install pecl/parallel ; composer require react-parallel/runtime
34+
$ pie install pecl/parallel
35+
$ echo "\nextension=parallel" >> "/path/to/php.ini"
36+
$ composer require react-parallel/runtime
3537
```
3638

3739
## Usage
@@ -144,7 +146,10 @@ call ( string|callable $func [, array $args [, ?string $autoload = null [, ?Loop
144146

145147
`call` - Curryied function that bootstraps asynchronous function calls
146148

147-
> **Note:** `asyncify` utilizes the autoload file in the root directory of the project from which it is invoked.
149+
### Important Considerations
150+
151+
- `asyncify`, by default, utilizes the autoload file (`autoload.php`) in the `vendor` directory of the composer project in which it resides.
152+
- The library converts all errors in the functions slated for non-blocking execution to exceptions.
148153

149154
## Dealing with problems
150155

0 commit comments

Comments
 (0)