Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

知识 在source/目录下的index.md的链接:source/about/index.md的访问链接为博客链接/about,在.yml文件中导航栏处配置url时写about/ font-matter中layout: docs指定使用themes/layout/下哪个ejs文件作为模板,比如上述的index.md文件 post.<name>可以获取每篇博客的font-ma...
play

LSM树详解 - 知乎 (zhihu.com) rocksdb的存储方式就是这种 LSM树简介 https://cloud.tencent.com/developer/article/1441835 写1,当收到一个写请求时,会先把该条数据记录在WAL Log里面,用作故障恢复。 2,当写完WAL Log后,会把该条数据写入内存的SSTable里面(删除是墓碑标记,更新是新记录一条的数...
db

resource 入门 Apache TinkerPop Introduction to Gremlin Gremlin Query Language - JanusGraph TinkerPop Documentation (apache.org) start-steps 详细(或速查,目录是按字母序的所有steps)TinkerPop Documentation (apache.or...

概述 最大堆 时间复杂度: 取堆顶(最大元素):O(1) 插入/删除堆顶:O(logn),n为堆中元素数目 自定义判断“大”的函数:方法一:<操作符成员函数class T { ... bool operator<(const T&r){...} }; priority_queue<T> q...

用vscode画思维导图、流程图等好用的插件:draw.io.Integration 装好之后,用vscode打开后缀名为 .drawio, .dio, .drawio.svg or .drawio.png中任意文件,即可进入画图界面:
tool

import os create dir:recusive, create if not exists, else throw error os.makedirs(path[,mode]) check path exists: if(os.path.)

单文件debug app.py in app.py import pdb; pdb.set_trace() cmd: python3 -m pdb app.py arg1 arg2 然后就开始debug,和gdb类似的界面和指令