unpersist cache pyspark

Solutions on MaxInterview for unpersist cache pyspark by the best coders in the world

showing results for - "unpersist cache pyspark"
Alice
20 Aug 2016
1df_new = df_cache.cache()
2print(df_new.is_cached)
3df_new.unpersist()
4print(df_new.is_cached)