Skip to content

Commit

Permalink
fix openresty install
Browse files Browse the repository at this point in the history
Signed-off-by: Sahil Yeole <[email protected]>
  • Loading branch information
beelchester committed Jul 8, 2024
1 parent 07cd053 commit 849f59e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ ENV PATH=$PATH:/usr/local/go/bin
# Install Openresty
RUN apt-get update && \
apt-get -y install --no-install-recommends wget gnupg ca-certificates lsb-release && \
wget -O - https://openresty.org/package/pubkey.gpg | gpg --dearmor -o /usr/share/keyrings/openresty-archive-keyring.gpg && \
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/openresty-archive-keyring.gpg] http://openresty.org/package/$(dpkg --print-architecture)/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/openresty.list && \
wget -O - https://openresty.org/package/pubkey.gpg | gpg --dearmor -o /usr/share/keyrings/openresty.gpg && \
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/openresty.gpg] http://openresty.org/package/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/openresty.list && \
apt-get update && \
apt-get -y install --no-install-recommends openresty

Expand Down

1 comment on commit 849f59e

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Query Server Requests/sec Latency (ms) Relative
1 { posts { id userId title user { id name email }}}
[Tailcall] 30,264.60 3.29 106.62x
[async-graphql] 1,714.90 58.17 6.04x
[Hasura] 1,580.09 63.82 5.57x
[Caliban] 1,568.69 63.41 5.53x
[Gqlgen] 639.75 155.74 2.25x
[Netflix DGS] 361.35 211.55 1.27x
[Apollo GraphQL] 283.84 346.54 1.00x
2 { posts { title }}
[Tailcall] 62,493.20 1.59 39.05x
[Caliban] 9,118.50 11.31 5.70x
[async-graphql] 8,518.69 11.73 5.32x
[Hasura] 2,512.36 39.77 1.57x
[Gqlgen] 2,240.54 45.73 1.40x
[Apollo GraphQL] 1,751.09 57.02 1.09x
[Netflix DGS] 1,600.19 68.95 1.00x
3 { greet }
[Tailcall] 64,455.30 1.56 25.00x
[Gqlgen] 49,406.20 5.53 19.16x
[async-graphql] 47,954.60 2.16 18.60x
[Caliban] 45,146.30 2.55 17.51x
[Netflix DGS] 8,235.67 14.71 3.19x
[Apollo GraphQL] 7,945.56 12.94 3.08x
[Hasura] 2,578.61 38.69 1.00x

Please sign in to comment.