remove
memory.remove(key)
db.remove(key)
Description
Removes the variable with the name of the key from that datastore.
Parameters
| Parameter | Type | Explanation |
|---|---|---|
| key | String | The variable name in that datastore |
Example
memory.remove("counter")
mem = option.memorystore(“MemoryStoreName”)
mem.remove("counter")
mydb = option.dbstore(“DatabaseName”)
mydb.remove("counter")