This commit is contained in:
Hong Ooi 2020-01-21 19:30:59 +11:00
Родитель c9c74f28be
Коммит 14bb7cf43c
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,6 +1,6 @@
Package: AzureRMR
Title: Interface to 'Azure Resource Manager'
Version: 2.3.0
Version: 2.3.0.9000
Authors@R: c(
person("Hong", "Ooi", , "hongooi@microsoft.com", role = c("aut", "cre")),
person("Microsoft", role="cph")

Просмотреть файл

@ -1,3 +1,7 @@
# AzureRMR 2.3.0.9000
- Update Resource Manager API version to "2019-10-01".
# AzureRMR 2.3.0
- New in this version is a facility for parallelising connections to Azure, using a pool of background processes. Some operations, such as downloading many small files or interacting with a cluster of VMs, can be sped up significantly by carrying them out in parallel rather than sequentially. The code for this is currently duplicated in multiple packages including AzureStor and AzureVM; putting it in AzureRMR removes the duplication and also makes it available to other packages that may benefit. See `?pool` for more details.