# NOT RUN {
# Get some data, stash in rds file
x <- ft_get('10.1371/journal.pone.0086169', from='plos', cache=TRUE, backend="rds")
# note that the data is not in the object, gives NULL
x$plos$data$data
# Collect data from the rds file
y <- x %>% collect()
# note how the data is now in the object
y$plos$data$data
# Let's get the actual
x %>% collect() %>% get_text()
# }
Run the code above in your browser using DataLab