shubhamfuloria
shubhamfuloria

Reputation: 45

Is there a way to check the aliveness of a DB connection object with the lua-cassandra driver?

I'm connecting to cassandra database from Lua using pure-lua-cassandra driver. Is there a way to check the aliveness of connection object ? If the connection is still alive or it has become stale .

Upvotes: 0

Views: 146

Answers (1)

Erick Ramirez
Erick Ramirez

Reputation: 16313

According to the documentation, there is no API available to check if the connection is still alive.

If you think it is important, feel free to open a feature request on the project's GitHub repository. Cheers!

Upvotes: 1

Related Questions