uncacheTable {SparkR}R Documentation

Uncache Table

Description

Removes the specified table from the in-memory cache.

Usage

## Default S3 method:
uncacheTable(tableName)

Arguments

tableName

The name of the table being uncached

Value

SparkDataFrame

Note

uncacheTable since 1.4.0

Examples

## Not run: 
##D sparkR.session()
##D path <- "path/to/file.json"
##D df <- read.json(path)
##D createOrReplaceTempView(df, "table")
##D uncacheTable("table")
## End(Not run)

[Package SparkR version 2.1.0 Index]