Skip to content

Releases: alibaba/yalantinglibs

lts1.2.1

05 Sep 09:05
Compare
Choose a tag to compare

add A bug fix for lts 1.2.0

#1070

Release 0.5.5

14 Aug 10:20
9c34752
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.5.4...0.5.5

Release 0.5.4

12 Aug 08:05
c1d533b
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.5.3...0.5.4

Release 0.5.3

25 Jul 03:45
d4337e3
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.5.2...0.5.3

Release 0.5.2

11 Jul 07:50
01b3425
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.5.1...0.5.2

Release lts1.2.0

13 Jun 07:58
d5234a7
Compare
Choose a tag to compare

What's Changed

  • [coro_http][feat]replace resp body int with int64 by @qicosmos in #981

Full Changelog: lts1.1.1...lts1.2.0

Release 0.5.1

11 Jun 11:29
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.5.0...0.5.1

Release 0.5.0(Support RDMA)

06 Jun 13:14
225f4d4
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.4.0...0.5.0

support rdma

rpc server with rdma:

    std::string_view echo(std::string_view str) {
      return str;
   }
    coro_rpc::coro_rpc_server server(std::thread::hardware_concurrency(), 9004, "0.0.0.0");
    server.register_handler<echo>();
    server.init_ibv();
    server.start();

rpc client with rdma:

  coro_rpc_client client;
  client.init_ibv();
  co_await client->connect("0.0.0.0", 9004);
  auto result = co_await client.call<echo>("hello rdma");
  assert(result.value() == "hello rdma");

so use rdama just need to call init_ibv, more details in: https://alibaba.github.io/yalantinglibs/zh/coro_rpc/coro_rpc_client.html#rdma%E9%85%8D%E7%BD%AE

lts1.1.1 Release

09 Apr 03:45
48e7cfc
Compare
Choose a tag to compare

What's Changed

Full Changelog: lts1.1.0...lts1.1.1

Release lts1.1.0

21 Mar 02:14
0d86235
Compare
Choose a tag to compare

What's Changed

Full Changelog: lts1.0.2...lts1.1.0