Wednesday, April 20, 2016

to REST or not to REST

HTTP
REST
SOAP
RPC
API Documentation
Normalization
Denormalization
DB Schema
Indexing
Search by Topic
Caching
Versioning
Depreciation & Appreciation

API Verbs

  1. Change/Update/Modify - POST
  2. Add/Insert - PUT[POST]
  3. Remove/Delete - DELETE
  4. Retrieve/Select/Fetch/Get - GET

Let's do the new!

No comments:

Post a Comment

Going one step further with Kotlin & gRPC

Recently, I tried using Quarkus with Kotlin for grpc. I have worked with grpc for communication between microservices in Java & Golang. ...