内容简介:A VueJS component to show a graphical vizualization of a PostgreSQL execution plan.SeeThis project is a rewrite of the excellent
pev2
A VueJS component to show a graphical vizualization of a PostgreSQL execution plan.
See Demo .
Disclaimer
This project is a rewrite of the excellent Postgres Explain Visualizer (pev) . Kudos go to Alex Tatiyants .
The pev project was initialy written in early 2016 but seems to be abandonned since then. There was no activity at all for more than 3 years and counting though there are several issues open and relevant pull requests pending.
The current project has several goals:
- isolate the plan view component and its dependencies in order to use it in any web app with for example the ability to load a plan without requiring any copy-paste from the user,
- make it work with recent version of JS frameworks,
- upgrade Bootstrap to a more recent version,
- use VueJS just for a matter of taste,
- maintain the project to match upgrades in PostgreSQL.
Usage
PEV2 is intended to be used as VueJS component.
Install it:
npm install pev2
Declare the PEV2
component and use it:
import pev2 from "pev2"; new Vue({ el: "#app", data: function() { return { plan: plan, query: query }; }, components: { pev2: pev2 } });
Then add the PEV2
component to your template:
<div id="app"> <pev2 :plan-source="plan" :plan-query="query"></pev2> </div>
PEV2
requires Bootstrap (CSS)
and FontAwesome
to work so don't forget to
add the following in you header (or load them with your favorite bundler).
<link href="https://unpkg.com/bootstrap@4.3.1/dist/css/bootstrap.min.css" rel="stylesheet" /> <link href="https://unpkg.com/font-awesome@4.7.0/css/font-awesome.css" rel="stylesheet" />
For a complete example, see this codesandbox .
以上所述就是小编给大家介绍的《Postgres Explain Visualizer》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
图解Java多线程设计模式
[日] 结城浩 / 侯振龙、杨文轩 / 人民邮电出版社 / 2017-8 / 89.00元
本书通过具体的Java 程序,以浅显易懂的语言逐一说明了多线程和并发处理中常用的12 种设计模式。内容涉及线程的基础知识、线程的启动与终止、线程间的互斥处理与协作、线程的有效应用、线程的数量管理以及性能优化的注意事项等。此外,还介绍了一些多线程编程时容易出现的失误,以及多线程程序的阅读技巧等。在讲解过程中,不仅以图配文,理论结合实例,而且提供了运用模式解决具体问题的练习题和答案,帮助读者加深对多线......一起来看看 《图解Java多线程设计模式》 这本书的介绍吧!