Prisma 2 is Coming Soon
转自:https://www.prisma.io/blog/prisma-2-is-coming-soon-mwwfhevie993
Prisma 2 will introduce many fundamental improvements. Making the Prisma server optional, an improved datamodel, better migrations, and a more powerful client API are only some of the upcoming features.

TLDR
Prisma 2 will introduce fundamental improvements:
- Enabling usage of Prisma as a library without the need for the Prisma server.
- Making Prisma workflows (access, migrate, manage) available as standalone tools.
- Providing a stable foundation for fewer breaking changes and more flexibility.
It will be released in early preview by Prisma Day, you can learn more about the release and upgrade process at the end of this article. Please join our RFC process and let us know what you think of our plans for Prisma 2.
Goals of Prisma 2: Stability, observability & flexibility
Since we released Prisma, we learned a lot about the use cases and preferences of our users. We also realized that (while we aim to move quickly) it was necessary to review and redesign Prisma's architectural core to account for our users' needs.
We very much appreciate the feedback of our community members. Thank you so much for helping us to continuously enhance the Prisma experience!
The next major release of Prisma will take into account all of our learnings. The main goals of the redesign were:
- Removing limitations of Prisma 1 (e.g. making the Prisma server optional & more flexible data modelling, e.g. to define indexes or use custom database types).
- Increasing visibility into how Prisma interacts with your database ("less magic").
- Building a stable core to minimize breaking changes in the future.
Making Prisma significantly easier to use
We have worked hard to rethink how the Prisma experience can be simplified. The result was an entire rewrite of the Prisma core in Rust, bringing massive improvements to the way Prisma works.
Using Prisma "as a library" by making the Prisma server optional
With Prisma 2, you can use the Prisma client as a "simple library" (i.e. just a Node moduleor Go package) without the need of running a database proxy server via Docker.
The Prisma server is a powerful tool for enterprise-grade use cases. However, the operational overhead it imposes can feel overwhelming, especially for newcomers that are just getting started with Prisma.
We strongly believe that removing the need for the Prisma server will make it a lot easier for newcomers to get started with Prisma while simplifying the lives of existing users by removing a lot of operational burden.

Rewriting Prisma in Rust
Prisma 1 is implemented in Scala which means it needs to run in the JVM. To reduce the overhead of running Prisma, we decided to rewrite it in Rust.
Benefits of Rust include a significantly lower memory footprint, better performance and no more need to deploy, monitor and maintain an extra server to run Prisma 2.
Rust has shown to be the perfect language for Prisma, allowing us to write safe and extremely performant code.
If you're interested, you can check out the
alphabranch of our mainprismarepo to explore the Rust rewrite.
Easier incremental adoption via standalone tools
Another common point of feedback is the difficulty of adopting Prisma incrementally in an existing project. While this is already possible with Prisma 1, so far Prisma used to be optimized for usage in greenfield projects.
To make it easier to use Prisma in an existing project, we're making the main Prisma workflows, accessing, migrating and managing your data, available as standalone tools.
This means you'll be able to adopt your favorite part of Prisma without changing your entire stack at once. For example, you can start using the Prisma client to simplify data access in your application but keep using your existing migration system.
You can then gradually expand your usage of Prisma tools as you see fit and benefit of the seamless integrations.
Prisma client: Type-safe relations & field selection
The Prisma client features a powerful API which enables developers to access their database in a flexible and type-safe way.
To improve the current API, we've added the possibility to retrieve scalar fields and (nested) relations in a type-safe way via select and include arguments. Here is a sneak peek of what the API for field selection and fetching relations looks like:
// Explicitly select some fields (exclusive)
const genres = await prisma.genres.findMany({
first: 10,
select: { id: true, name: true }
})
// Fetch all scalars and include first 10 tracks via relation
const genresWithTracks = await prisma.genres.findMany({
first: 10,
include: {
tracks: { first: 10 }
}
})
Other enhancements include support for lazy loading of scalar fields and relations as well as improved fallbacks to raw database queries. With Prisma 2, it will also become easier to get insights into the queries which the Prisma client sends to your database.
To learn more about the upcoming API improvements, check out the RFCs for the JavaScript/TypeScript and the Go client API.
More powerful & flexible schema migrations
While providing a great developer experience, Prisma's current migration system has some limitations in more complex migration scenarios.
The migration system in Prisma 2 will keep the simplicity and declarative nature while unlocking many migration scenarios that previously imposed a lot of overhead. It also is carefully designed to work in CI/CD environments.
Prisma's declarative datamodel serves as the single source of truth for your database schema, codifying it in a universal modeling language. When changing your datamodel, Prisma 2 auto-generates migration scripts that you can execute to run a migration.
Migrations can be extended with before/after hooks and are have a robust execution enginer where any failures will trigger automatic rollbacks.
Prisma Admin available on Desktop & refined UI
Prisma Admin has been greatly received by our community as a way to make it easier to view and edit the data in your database. In Prisma 2, Prisma Admin will become available as a desktop application that can connect to any database.

Prisma 2 also adds some improvements to the user experience of Prisma Admin, for example by introducing:
- A dedicated UI for filtering (see screenshot above)
- An environment to run Prisma client code (REPL)
- Support for embedded types
An improved modelling syntax for your data
With Prisma 1, the datamodel is based on GraphQL SDL syntax, a language originally designed to describe GraphQL APIs. While SDL is simple and intuitive, we've found that it's not the best tool for describing database schemas.
Building upon SDL as a great foundation, we are introducing fundamental improvements to the Prisma datamodel syntax that will unlock your favorite database features in Prisma, for example:
- Choosing specific column types
- Defining indexes
- Using lightweight expressions for default values
Changes for existing SDL users will be minimal, while advanced use cases are covered by the powerful new features introduced in Prisma 2.
Prisma 2 is Coming Soon的更多相关文章
- 分享一下怎么开发一款图片视频类App,秒拍和prisma
第一步,分解短视频App的功能 我们在秒拍官网看到如此描述: [视频拍摄及导入]支持直接拍摄及导入手机本地的视频 [照片电影]照片专属特效,轻松创作照片电影 [MV特效]10余款全新MV特效,让普通视 ...
- Prisma
AI修图艺术:Prisma背后的奇妙算法 | 深度 投递人 itwriter 发布于 2016-07-30 12:47 评论(2) 有712人阅读 原文链接 [收藏] « » 雷锋网按:本文作者系图普 ...
- Prisma GraphQL 服务器 生产者 "https://www.prisma.io"
Prisma 一个 GraphQL 服务器 生产者 "https://www.prisma.io" , 关注一下
- 布拉格捷克理工大学研究团队:Prisma进化版
原文链接 还记得 Prisma 吗?就是能把拍摄的照片转化为各种名画风格的修图软件,神经网络的深度学习后,想要波普还是梵高风的图片都不在话下. 现在,它的进化版本来了.这回是布拉格捷克理工大学的研究 ...
- prisma 服务器端订阅试用
graphql 协议是支持数据的实时订阅功能的(一般基于websocket 进行实现) prisma 支持客户端订阅以及服务器端订阅(类似webhook),可以方便将 数据推送后端服务 目的 pr ...
- prisma 集成 pipelinedb测试
pipelinedb 是一个基于pg数据库开发的stream sql 数据库,和prisma 集成起来可以开发很 方便的stream 应用 使用docker 安装 项目初始化 prisma init ...
- prisma 集成tidb 安装试用
以前官方提供的ansible 的脚本,现在有了docker的版本,可以方便测试使用 实际完整配置参考 https://github.com/rongfengliang/prisma-tidb 安装ti ...
- prisma middleware 简化 graphql resolver 编写的类库
prisma 推出middleware 的目的就是保持resolver 的简洁 作用: 输入参数访问同一个resolver 决定resolver 最终的返回值 在resolver 连中捕获异常以及 ...
- prisma graphql 集成timescaledb
prisma 官方文档说明了因为支持pg 所以相关的timescaledb.cockroachdb 应该也是支持的 但是测试之后timescaledb 支持cockroachdb有问题(事务处理模型支 ...
- prisma graphql 工具基本使用
项目使用docker-compose mysql 运行 安装 npm insatll -g prisma or yarn global add prisma 创建代码 项目结构 ├── README. ...
随机推荐
- nginx+lua+storm的热点缓存的流量分发策略自动降级
1.在storm中,实时的计算出瞬间出现的热点. 某个storm task,上面算出了1万个商品的访问次数,LRUMap 频率高一些,每隔5秒,去遍历一次LRUMap,将其中的访问次数进行排序,统计出 ...
- eclipse创建springboot项目的三种方法
本文链接:https://blog.csdn.net/mousede/article/details/81285693 方法一 安装STS插件 安装插件导向窗口完成后,在eclipse右下角将会出现安 ...
- 从实践到原理,带你参透 gRPC
gRPC 在 Go 语言中大放异彩,越来越多的小伙伴在使用,最近也在公司安利了一波,希望这一篇文章能带你一览 gRPC 的巧妙之处,本文篇幅比较长,请做好阅读准备.本文目录如下: 简述 gRPC 是一 ...
- nginx反向代理、缓存及压缩配置实战
一.反向代理配置 (原文链接:http://www.studyshare.cn/blog/details/1155/0 ) 准备:两个项目分别使用端口8080,8081,只有一个备案域名,配置如下 ...
- 2019 巨人网络java面试笔试题 (含面试题解析)
本人3年开发经验.18年年底开始跑路找工作,在互联网寒冬下成功拿到阿里巴巴.今日头条.巨人网络等公司offer,岗位是Java后端开发,最终选择去了巨人网络. 面试了很多家公司,感觉大部分公司考察的点 ...
- CSS疑难杂症
1.text-align: center + letter-spacing: 2em 字体不居中 办法:添加text-indent: 2em 2.first-child伪类选择不到元素 办法:确保备选 ...
- js基本包装类型及Math对象(八)
一.基本包装类型[继承于Object类型]1.Number().String().Boolean()引用数据类型[包装类型]分别对应的基本数据类型为number.string.boolean. 2.当 ...
- CentOS 7 - 以root身份登入Gnome
新版的7.0很多资料没有,为了安全,linux是禁止root登录到桌面,但为了方便又想用root登录到桌面,在网上找了找,基本上都是这这一篇: http://shaoguangleo.blog.163 ...
- Java多线程 常见问题整理
线程 什么是线程 线程是指程序在执行过程中,能够执行程序代码的一个执行单元. 线程和进程的区别 线程:一段程序执行过程中的一个执行单元,各个线程之间共享程序的内存空间以及一些进程级的资源,各线程拥有自 ...
- myEclipse项目部署点击Finish按钮没反应
-- 问题描述:myEclipse项目部署点击Finish按钮没反应. -- 问题原因:Tomcat没有不熟JDK. -- 解决办法:window->preferences->servic ...