https://github.com/felipeaz/apache-thrift
Using Apache Thrift with Go
https://github.com/felipeaz/apache-thrift
apache-thrift golang
Last synced: 3 months ago
JSON representation
Using Apache Thrift with Go
- Host: GitHub
- URL: https://github.com/felipeaz/apache-thrift
- Owner: felipeaz
- Created: 2023-05-27T17:45:22.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-28T13:29:58.000Z (almost 2 years ago)
- Last Synced: 2025-01-07T05:21:51.332Z (4 months ago)
- Topics: apache-thrift, golang
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# apache-thrift
Using Apache Thrift with Go## Installation guide
Make sure you have thrift installed in your machine, if you don't, follow the steps here:https://thrift.apache.org/download### Generating thrift files
Run the command bellow to generate thrift code``make thrift-gen``
## Testing
Before testing, make sure there's nothing running on your port :8080### Server
In a separated terminal, run:``make server``
### Client
Open another terminal tab and run``make client``
This command will send a request to the RPC server
![]()