Skip to content

Commit

Permalink
增加readme
Browse files Browse the repository at this point in the history
  • Loading branch information
cweijan committed Dec 13, 2021
1 parent 1f513ff commit 43dae33
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions server/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Pdman Web

该版本仅支持Mysql以及移除了数据库版本管理.

## 安装
`npm i -g pdman`

## 启动

打开控制台, 输入`pdman`, 启动后访问[http://localhost:8000](http://localhost:8000)

## 致谢
原始仓库: [pdman](https://gitee.com/robergroup/pdman)

## 备注

历史记录
1. 使用了IndexedDB进行存储, 对FileHandler对象进行了持久化
2. 其中使用[idb-keyval](https://github.com/jakearchibald/idb-keyval)库避免了底层操作

IndexedDB
1. IndexedDB是一个NoSQL数据库、分为数据库、数据表和数据
2. 数据表中的数据为键值对列表, 键则是用来唯一标识文档, value为非结构化数据, 可以有多条
3. 总体结构和ElasticSearch比较像, 不同的是创建文档时必需手动指定主键.

0 comments on commit 43dae33

Please sign in to comment.