Created
January 25, 2021 08:44
-
-
Save alexichepura/65bc7684cdff36ef5eef215cc1f2b834 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { PrismaClient } = require(".prisma/client") | |
const prisma = new PrismaClient() | |
const ping = async () => { | |
const start = process.hrtime() | |
await prisma.user.findFirst({select: {id: true}}) | |
const delta = process.hrtime(start) | |
const ms = delta[0] * 1000 + delta[1] / 1000000 | |
console.log("ping:", ms + "ms") | |
} | |
ping() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment