Skip to main content

remove

memory.remove(key)

db.remove(key)

Description

Removes the variable with the name of the key from that datastore.

Parameters

ParameterTypeExplanation
keyStringThe variable name in that datastore

Example

memory.remove("counter")

mem = option.memorystore(“MemoryStoreName”)
mem.remove("counter")

mydb = option.dbstore(“DatabaseName”)
mydb.remove("counter")