Skip to contents

Removes a previously created binary cache item. Once deleted, the identifier becomes invalid and cannot be used further.

Usage

mc_delete_binary_cache(conn, identifier)

Arguments

conn

A connection object created by mc_connect.

identifier

Character string. The cache item identifier to remove.

Value

Invisibly returns NULL on success; throws an error if the item does not exist or cannot be deleted.

Examples

if (FALSE) { # \dontrun{
id <- mc_create_binary_cache(conn)
# ... use the cache item ...
mc_delete_binary_cache(conn, id)
} # }