i am setting up a Swoole web socket server for my chat application on CentOS 7 host machine. and will use Swoole table for storing users list.
But i am not sure what is the lifespan like for Swoole table. when the Swoole Server shuts down by accident, what will happen to the table created before? Do i need to destroy it myself to free up memory? if yes, how can i find the table and remove it?
the official document of swoole table doesn't really provide much details on it, so hopefully someone has an experience can give me a short explanation on it.