stargate-grpc-go-client icon indicating copy to clipboard operation
stargate-grpc-go-client copied to clipboard

A golang gRPC client for https://stargate.io

Results 9 stargate-grpc-go-client issues
Sort by recently updated
recently updated
newest added

Set a custom user-agent string on connections, preferably of the form `stargate-grpc-go-client/`.

Hi I was wondering if someone could tell me what I am doing wrong here, the compiler tells me "missing type in composite literal" however, I don't know what do...

Could do with some polish, but this will cut down on the auth spam. Cursory tests show significant throughput/latency gains. **What this PR does**: - Cache auth token - Read...

**What this PR does**: * Implements native wrapper/translation types for critical protobuf message components. * Demonstrates how these types might be used in production and in testing to simplify working...

# Current design Callers must chose between including the keyspace in each query: ```go _, err = stargateClient.ExecuteQuery(&sgpb.Query{ Cql: "INSERT INTO main_keyspace.some_table (id) VALUES ('abcd')", }) ``` or adding a...

# Overview It's great being able to interact with the gRPC message types directly! But sometimes it's more desirable to work with more simplified semantics, especially for testing. In addition,...

# Overview The only thing better than a Go gRPC API would be if you guys made it easy to get the data out of protos and into local structures....

Stargate logs show that every request is first calling the auth endpoint over http/1.1, though the connection seems to be rightly opened only once per session. I see a possibly...

There are certain errors at the gRPC framework level that aren't the most helpful like: ```go rpc error: code = Unimplemented desc = ``` We need to see if we...