Skip to content
This repository has been archived by the owner on Sep 2, 2022. It is now read-only.

Latest commit

History

History
15 lines (10 loc) 路 956 Bytes

why-does-prisma-need-a-server-fq02.mdx

File metadata and controls

15 lines (10 loc) 路 956 Bytes

export const meta = { title: 'Why does Prisma require an extra server on top of my database if it replaces an ORM?', position: 8, articleGroup: 'FAQ 8', }

FAQ

The Prisma client acts as a replacement for traditional ORMs in your application architecture. It enables a simplified and type-safe database access by providing an intuitive API that has been designed for modern application development.

The Prisma client is connected to your database through a Prisma server. The Prisma server can be configured via Docker and enables high-scalability and great performance for your application.

We are currently working on a version of the Prisma client that can be used without running the Prisma server. This will allow for an easier setup of Prisma and a faster way to get started. The Prisma server can is added to the architecture once the application goes to production.