uncacheTable {SparkR} | R Documentation |
Removes the specified table from the in-memory cache.
## Default S3 method: uncacheTable(tableName)
tableName |
The name of the table being uncached |
SparkDataFrame
uncacheTable since 1.4.0
## Not run: sparkR.session() path <- "path/to/file.json" df <- read.json(path) createOrReplaceTempView(df, "table") uncacheTable("table") ## End(Not run)