# Functions
AES对称解密.
AES对称加密.
批处理新增数据.
判断指定key缓存是否存在.
根据key取缓存.
删除指定key的缓存.
从缓存中查询对应的key和值.
从缓存中只查询对应的key.
设置缓存key和值以及时效.
搜索引擎文档总数.
根据id得到搜索引擎中文档内容.
内容加入搜索引擎.
删除搜索引擎中指定文档.
搜索引擎搜索指定关键字.
关闭所有连接.
生成雪花订单号.
初始化kV缓存.
初始化搜索引擎.
权限控制初始化.
初始化指定目录.
初始化mysql数据库.
初始化postgresql数据库.
初始化redis数据库.
创建JWT加密字串.
检测JWT加密字串.
md5加密.
非对称解密.
非对称加密.
sha1加密.
sha256加密.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Variables
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
<script>
if ('EventSource' in window) {
let token = document.querySelector("#token").value
var eventsoure = new EventSource(`http://127.0.0.1:8080/sse/${token}`,{ withCredentials: true })
eventsoure.onmessage = function(event){
console.log("message=", event.data)
}
}else{
document.write("No support eventsource")
}
</script>
*/.
# Type aliases
No description provided by the author