Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Microservices FTW?

Microservices FTW?

A talk on Microservices as an architecture.

Presented at Codeaholics in Hong Kong
on Wednesday 11th March 2015.

Matthew Rudy Jacobs

March 11, 2015
Tweet

More Decks by Matthew Rudy Jacobs

Other Decks in Technology

Transcript

  1. THRIFT struct User { 1: i32 id, 2: string name,

    3: string email } service Users { User show(1:i32 id) }
  2. PROTOCOL BUFFERS message User { required int32 id = 1;

    required string name = 2; optional string email = 3; } service UserService { rpc Show (ShowRequest) returns (ShowResponse); }
  3. Create Services When You Need Them Todos Users Todos Controller

    Users Controller Mailer SQL Todos Users