You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm thinking about adding support for Cassandra via https://github.com/gocql/gocql. How would one go about implementing this? Any good pointers? I've briefly looked at #7, but I'm not a go expert.
The text was updated successfully, but these errors were encountered:
Hi @jmdacruz! Hm, currently sql-agent depends on drivers implementing the database/sql interfaces, but according to this this version of the driver does not (the previous one does).
I am not familiar with what is unique about Cassandra in terms of sending read queries, but for the scope of sql-agent, it may be easy to provide a small database/sql compatible implementation for this driver.
That makes sense, given to the distributed nature of Cassandra (e.g., consistency). You are probably right in that a small compatible subset of the queries could be made available via a a facade implementing the database/sql interface.
I'm thinking about adding support for Cassandra via https://github.com/gocql/gocql. How would one go about implementing this? Any good pointers? I've briefly looked at #7, but I'm not a go expert.
The text was updated successfully, but these errors were encountered: