Skip to content
#

Server

A server is a program or device that provides functionality for other programs and devices, called clients. This relation forms the Client-Server Model.

Here are 8,849 public repositories matching this topic...

vapor
DaveTCode
DaveTCode commented Apr 19, 2021

Is your feature request related to a problem? Please describe.
As per https://discordapp.com/channels/431917998102675485/435928766812913664/833695763296813107 http apis which return content with Content-Type plain/text hit an Abort.httpDecoder error: Unsupported Media Type when decoding.

e.g.

return req.client.get(address).flatMapThrowing { res in
    try res.content.decode(UInt8.
thornjad
thornjad commented Dec 18, 2019

As we attempt to pick up the release cadence, we are in need of an explicit changelog file which enumerates changes in each version. This should be a markdown or plaintext file adhering to some form of standardized format. Ideally, it will be able to work with #582.

duncanspumpkin
duncanspumpkin commented Feb 14, 2021

We currently use a macro for writing down a money amount as a literal. We should move to a more modern C++ representation with a user defined literal like the below:

constexpr money32 operator"" _GBP(long double money)
{
    return money * 10;
}

static_assert(MONEY(2, 40) == 2.40_GBP);

Go through the codebase and replace all MONEY macro uses with the equivalent version. You m

vespa
kkraune
kkraune commented Apr 2, 2021

... to make it easier to read Vespa documentation on an e-reader / offline

Vespa documentation is generated using Jekyll from .md and .html files, look into options for generating the artifact as part of site generation (there might be plugins we can use here)

Wikipedia
Wikipedia