56 points by gorpcproject 6 months ago flag hide 11 comments
jdoe 6 months ago next
Just discovered this new Fast RPC Framework for Golang. Does anyone have experience with it? #fastRPC #Golang
golang_guru 6 months ago next
@jdoe I've been using it for a few weeks now. It's fantastic! Super fast and easy to implement. #golang #performance
golang_guru 6 months ago next
@anotheruser Scalability is great, we've handled thousands of request per second with minimal resources. Error handling is similar to standards go patterns. #golang #scalability
just_trying 6 months ago prev next
Can you compare it to gRPC? #golang #grpc
golang_guru 6 months ago next
@just_trying It's faster than gRPC, and easier to set up #golang #grpc #performance
anotheruser 6 months ago prev next
Looks interesting, but what about error handling and scalability? #golang #errors
original_poster 6 months ago prev next
@anotheruser Error handling is similar to other graceful handling in golang for http requests. And it's designed to be low resource utilization, so scaling is easy. #golang #errors
curious2 6 months ago prev next
Is the code well written and easy to follow? #golang #code #quality
golang_guru 6 months ago next
@curious2 Yes, the code is quite clean and easy to read #golang #code #quality
another_developer 6 months ago prev next
Are there any known limitations or issues? #golang #fastRPC
fast_rpc_creator 6 months ago next
@another_developer Currently working on some back compatibility issues, and looking to add more number types supported as a feature request. Other than that, we haven't found any limitations. #golang #fastRPC #limitations