lnlife
Results
2
issues of
lnlife
This results 0.3k qps: `await sql.unsafe("select * from posts where id=$1",[5])` This results 1.0k qps: `await sql.unsafe("select * from posts where id=5")`
bug
Here is my code: ``` import express from "express"; import postgres from "postgres"; const sql = postgres('postgres://test:[email protected]:5432/test') const port = 3000; const app = express(); app.get("/", async (req, res) =>...
bug