Skip to content

Commit

Permalink
edit README
Browse files Browse the repository at this point in the history
  • Loading branch information
shikokuchuo committed Oct 4, 2024
1 parent a7577e5 commit 423705f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: mirai
Type: Package
Title: Minimalist Async Evaluation Framework for R
Version: 1.2.0.9025
Version: 1.2.0.9026
Description: Designed for simplicity, a 'mirai' evaluates an R expression
asynchronously in a parallel process, locally or distributed over the
network, with the result automatically available upon completion. Modern
Expand Down Expand Up @@ -31,7 +31,7 @@ Encoding: UTF-8
Depends:
R (>= 3.6)
Imports:
nanonext (>= 1.2.1.9025)
nanonext (>= 1.2.1.9026)
Enhances:
parallel,
promises
Expand Down
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# mirai 1.2.0.9025 (development)
# mirai 1.2.0.9026 (development)

* `daemons(dispatcher = "thread")` implements threaded dispatcher (experimental), a faster and more efficient option to running dispatcher in a separate process.
* `daemons()` behavioural changes:
Expand All @@ -17,7 +17,7 @@
* `everywhere()` now errors if the specified compute profile is not yet set up, rather than fail silently.
* `launch_local()` and `launch_remote()` now strictly require daemons to be set, and will error otherwise.
* Internal performance enhancements.
* Requires `nanonext` >= [1.2.1.9025].
* Requires `nanonext` >= [1.2.1.9026].

# mirai 1.2.0

Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ We would like to thank in particular:

### Installation

Install the latest release from CRAN or R-multiverse:
Install the latest release from CRAN:

```{r cran, eval=FALSE}
install.packages("mirai")
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ To wait for and collect the return value, use the mirai’s `[]` method:

``` r
m[]
#> [1] 7.781188 5.028784 8.031969 7.663697 7.517325
#> [1] 6.256299 8.241925 7.314121 6.837514 5.670451
```

As a mirai represents an async operation, it is never necessary to wait
Expand All @@ -89,7 +89,7 @@ while (unresolved(m)) {
m
#> < mirai [$data] >
m$data
#> [1] 7.781188 5.028784 8.031969 7.663697 7.517325
#> [1] 6.256299 8.241925 7.314121 6.837514 5.670451
```

#### Daemons
Expand Down Expand Up @@ -258,7 +258,7 @@ provide secure connections in `mirai`.

### Installation

Install the latest release from CRAN or R-multiverse:
Install the latest release from CRAN:

``` r
install.packages("mirai")
Expand Down
1 change: 1 addition & 0 deletions vignettes/databases.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ everywhere(
},
.serial = cfg
)

```
`mirai()` calls may then be used to write to or query the database all in the Arrow format.

Expand Down

0 comments on commit 423705f

Please sign in to comment.