Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: zanfranceschi/rinha-de-backend-2024-q1
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: gmafrac/rinha-de-backend-2024-q1
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 10 commits
  • 1 file changed
  • 1 contributor

Commits on Mar 9, 2024

  1. Adding my contribution to the Backend Challenge

    Signed-off-by: Guilherme Mafra da Costa <[email protected]>
    gmafrac committed Mar 9, 2024
    Copy the full SHA
    1edd2ce View commit details
  2. Adding the .env file

    Signed-off-by: Guilherme Mafra da Costa <[email protected]>
    gmafrac committed Mar 9, 2024
    Copy the full SHA
    9751c68 View commit details

Commits on Mar 10, 2024

  1. Copy the full SHA
    9d743e8 View commit details
  2. Removing the "testada" file to test the rinha-de-backend-2024-q1

    Signed-off-by: Guilherme Mafra da Costa <[email protected]>
    gmafrac committed Mar 10, 2024
    Copy the full SHA
    0a446bd View commit details
  3. Updating the docker-compose and nginx.conf

    Signed-off-by: Guilherme Mafra da Costa <[email protected]>
    gmafrac committed Mar 10, 2024
    Copy the full SHA
    6a7da5c View commit details

Commits on Mar 11, 2024

  1. Updating the nginx.conf

    Signed-off-by: Guilherme Mafra da Costa <[email protected]>
    gmafrac committed Mar 11, 2024
    Copy the full SHA
    67d31aa View commit details
  2. Merge remote-tracking branch 'upstream/main'

    Signed-off-by: Guilherme Mafra da Costa <[email protected]>
    gmafrac committed Mar 11, 2024
    Copy the full SHA
    36c6ab4 View commit details
  3. Final update

    Signed-off-by: Guilherme Mafra da Costa <[email protected]>
    gmafrac committed Mar 11, 2024
    Copy the full SHA
    c0d7a9f View commit details
  4. Last commit

    Signed-off-by: Guilherme Mafra da Costa <[email protected]>
    gmafrac committed Mar 11, 2024
    Copy the full SHA
    dc8241c View commit details
  5. Merge remote-tracking branch 'upstream/main'

    Signed-off-by: Guilherme Mafra da Costa <[email protected]>
    gmafrac committed Mar 11, 2024
    Copy the full SHA
    02e053f View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 participantes/gmafrac-golang/nginx.conf
12 changes: 6 additions & 6 deletions participantes/gmafrac-golang/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
events {
worker_connections 1000;
worker_connections 4500;
}

http {

access_log off;
sendfile on;

sendfile on;
upstream api {
server api1:8080 max_conns=500;
server api2:8080 max_conns=500;
server api1:8080;
server api2:8080;
}

server {