grpc C++ ... a way to go generic - Irakleia Karyoti - Meeting C++ 2023

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ส.ค. 2024
  • grpc C++ ... a way to go generic - Irakleia Karyoti - Meeting C++ 2023
    Slides: slides.meeting...
    Survey: survey.meeting...
    As code bases grow, and more and more feature requests come in, the need for componetization and decoupling is more like the only way to go.
    So we are now leaving monolithic architectures (or more like we've been leaving monolithic arhictectures for quite some time now) and we're switching to service oriented designs.
    Many of us are now using grpc (google's RPC framework) for interconnectivity and it all works great, when we'll building from scratch.
    But what if we would like to modernize our old code bases or connect our old monolithic apps? How can we effectively do that?
    How can we advance from the usage of such a modern RPC tool, without even knowing about it?
    This talk will be about providing a solution to use grpc C++ in a more generic way, abstracting the details, decoupling service implementation from its definition and eliminating dependencies.

ความคิดเห็น • 4

  • @user-xs5kc5ch9m
    @user-xs5kc5ch9m หลายเดือนก่อน

    Pleasure to watch this video, I Get a pointer to move forward But request you to if You provide step by step procedure of installation and build of both grpc and proto file in both window and linux os. It would be more appreciated!

  • @SimonToth83
    @SimonToth83 6 หลายเดือนก่อน +3

    Write a thick client, write your own serializers, implement custom schema publishing...
    Hmm, I wonder what features from gRPC are actually there after all this and what is even the point of using such a heavy-duty library in this context. And yes, I am genuinely curious.