library(shinydashboard)
library(leaflet)
ui <- fluidPage(
dashboardBody(
box(width = NULL, solidHeader = TRUE,
leafletOutput("busmap", height = 900)
)
)
)
server <- function(input, output) {
liveish_data <- reactive({
invalidateLater(6000)
lat <- runif(3000, min=51, max=53.5)
lon <- runif(3000, min=4, max=8)
DF_Actueel <- data.frame(lat,lon)
print("refreshed")
DF_Actueel
})
output$busmap = renderLeaflet({
DF_Actueel <- liveish_data()
map <- leaflet(options=list())%>%
addProviderTiles(providers$OpenStreetMap.HOT) %>%
addMarkers(data = DF_Actueel)
map
})
}
shinyApp(ui, server)
我在运行应用程序时检查我的任务管理器。我的问题是,当这个应用程序运行时,RStudio会使用一些内存(在我的电脑上大约为350MB),并且每次更新时,Rshiny的内存使用量都会增加20MB。
> object.size(map)
148000 byte
这意味着几分钟后,Rstudio 内存不足。我给了它更多的内存...但这只是意味着它会稍后耗尽。
我看过类似的问题:
Shiny R 反应值内存泄漏——未答复
https://github.com/rstudio/shiny/issues/1551 -- 使用了
Observe()
函数
https://github.com/rstudio/shiny/issues/1591——我使用了
options(shiny.reactlog=TRUE)
并检查输出。我只有一个地图对象
https://github.com/rstudio/shiny/issues/1151——使用Plotly代替传单,但没有解决,即使它已关闭。
还有一些相同的主题和相同的未解答问题。
Windows 10
24GB RAM
64-bit operating system
Intel(R) Core i7-6700HQ CPU @ 2.6GHz
R version 3.4.3 (2017-11-30)
leaflet 1.1.0
shinydashboard 0.6.1
我将 addMarkers 移至 leafletProxy,这样地图就不会在 6 秒内重新渲染并加载到内存中。我认为如果您在添加新标记之前使用clearMarkers(),内存应该或多或少保持稳定。
这是代码:
library(shinydashboard)
library(leaflet)
ui <- fluidPage(
dashboardBody(
box(width = NULL, solidHeader = TRUE,
leafletOutput("busmap", height = 900)
)
)
)
server <- function(input, output) {
liveish_data <- reactive({
invalidateLater(6000)
lat <- runif(3000, min=51, max=53.5)
lon <- runif(3000, min=4, max=8)
DF_Actueel <- data.frame(lat,lon)
print("refreshed")
DF_Actueel
})
output$busmap = renderLeaflet({
map <- leaflet(options=list())%>%
addProviderTiles(providers$OpenStreetMap.HOT)
map
})
observe({
DF_Actueel <- liveish_data()
leafletProxy("busmap", deferUntilFlush=T) %>%
clearMarkers() %>%
addMarkers(data = DF_Actueel)
})
}
shinyApp(ui, server)