Live data from Hacker News

Show HN: Light and Powerful Web-Framework for C++

oatpp.io

1–9 of 9 posts

Re: Show HN: Light and Powerful Web-Framework for C++

#4
post #2

Version 1.0.0 is finally released. Questions and comments are welcome!

does it support http2? How to implement server side rendering using a non-javascript backend?

Thanks for the question,

Work on Http2 is planned for this year. Not implemented yet.

Currently supported protocols:

- HTTP1.1

- Websocket

> How to implement server side rendering using a non-javascript backend?

Oat++ is focused on serving APIs. It has no server-side module at the moment. And it's not currently planned in the future.

Re: Show HN: Light and Powerful Web-Framework for C++

#6
post #4

Earlier quoted context omitted.

does it support http2? How to implement server side rendering using a non-javascript backend?

Thanks for the question, Work on Http2 is planned for this year. Not implemented yet. Currently supported protocols: - HTTP1.1 - Websocket > How to implement server side rendering using a non-javascript backend? Oat++ is focused on serving APIs. It has no server-side module at the moment. And it's not currently planned in the future.

So this is for the client??

I only ask because the homepage "Handle over 5 Million simultaneous connections on a single server." implies that it is for the server... ?

Re: Show HN: Light and Powerful Web-Framework for C++

#7
post #6
post #4

Earlier quoted context omitted.

Thanks for the question, Work on Http2 is planned for this year. Not implemented yet. Currently supported protocols: - HTTP1.1 - Websocket > How to implement server side rendering using a non-javascript backend? Oat++ is focused on serving APIs. It has no server-side module at the moment. And it's not currently planned in the future.

So this is for the client?? I only ask because the homepage "Handle over 5 Million simultaneous connections on a single server." implies that it is for the server... ?

It is web client and web server. I guess he meant that the main purpose of the server is to serve API requests. not web pages

Re: Show HN: Light and Powerful Web-Framework for C++

#8
post #7
post #6

Earlier quoted context omitted.

So this is for the client?? I only ask because the homepage "Handle over 5 Million simultaneous connections on a single server." implies that it is for the server... ?

It is web client and web server. I guess he meant that the main purpose of the server is to serve API requests. not web pages

Ah that makes sense, thanks. I guess there's no reason it can't serve pages because it is just "text" being returned after all!