Leonid Stryzhevskyi

Results 6 issues of Leonid Stryzhevskyi

Create `.hpp` file with most used includes + shortcut typedefs. Example: let's use `oatpp::http::IncomingRequest` instead of `oatpp::web::protocol::http::incoming::Request` ```cpp #include "oatpp/web/protocol/http/incoming/Request" ... namespace oatpp { namespace http { typedef oatpp::web::protocol::http::incoming::Request IncomingRequest;...

API Proposal

See details - https://github.com/jolibrain/deepdetect/issues/1316 From original issue - Libz init memory reported by valgrind: ``` ==3020638== 536,192 (11,904 direct, 524,288 indirect) bytes in 2 blocks are definitely lost in loss...

Bug

Add new module `oatpp-grpc`. To automatically generate REST API for gRPC services.

Submodule

Currently, object mapping is tightly coupled with parsing (for example, JSON ObjectMapper). Since Oat++ supports multiple object mappers (JSON, BSON, BOB), it can be challenging to keep all object mappers...

Proposal

Currently, all statements are created each time the `Executor::execute()` method is called - https://github.com/oatpp/oatpp-sqlite/blob/master/src/oatpp-sqlite/Executor.cpp#L121 We should keep prepared statements per connection and reuse them.

enhancement