Resets a context.
context::inspect name:stringDescription
Section titled “Description”The context::inspect operator shows details about a specified context.
name: string
Section titled “name: string”The name of the context to inspect.
Examples
Section titled “Examples”Inspect a context
Section titled “Inspect a context”Add data to the lookup table:
from {x:1, y:"a"}, {x:2, y:"b"}context::update "ctx", key=x, value=yRetrieve the lookup table contents:
context::inspect "ctx"{key: 2, value: "b"}{key: 1, value: "a"}See Also
Section titled “See Also”context::create_bloom_filter,
context::create_lookup_table,
context::erase,
context::load,
context::remove,
context::reset,
context::save,
create_geoip,
erase,
list,
update