上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 23 下一页
摘要: github地址:https://github.com/smi2/phpClickHouse/tree/e27b04d482e9922df8bf1ea0880bf2985d2e06d0 ORM搭建学习:https://www.cnblogs.com/glory-jzx/p/4470129.html 阅读全文
posted @ 2020-05-03 21:52 G1733 阅读(1870) 评论(0) 推荐(0) 编辑
摘要: 1 #!/bin/bash 2 #author shiqi 3 4 t_pid=29977 5 es_pid_M=8787 6 es_pid_S=8284 7 8 if [ $# -eq 0 ]; 9 then 10 echo -e "\033[33m \033[0m" 11 echo -e "\0 阅读全文
posted @ 2020-04-30 16:46 G1733 阅读(451) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/grapelet520/p/11280972.html#_label4 https://www.jianshu.com/p/a5bf490247ea centos 7 下按照Clickhouse 1.官网下载rpm包:https://packagecl 阅读全文
posted @ 2020-04-29 00:30 G1733 阅读(363) 评论(0) 推荐(0) 编辑
摘要: 国外各种rpm包依赖:http://rpmfind.net/linux/rpm2html/search.php?query=libxml2国内各种rpm包:http://mirrors.163.com/centos/6/os/x86_64/Packages/ http://mirrors.aliyu 阅读全文
posted @ 2020-04-28 12:58 G1733 阅读(511) 评论(0) 推荐(0) 编辑
摘要: 小数据池 1 对于整数,Python官方文档中这么说: 2 The current implementation keeps an array of integer objects for all integers between -5 and 256, when you create an int 阅读全文
posted @ 2020-04-17 23:20 G1733 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 段描述符表 段描述符表简称描述符表,用来存储保护方式下段描述符的一个阵列。80386/80486 CPU 共有3 种描述符表:全局描述符表GDT、局部描述符表LDT 和中断描述符表IDT。描述符表由描述符顺序排列组成,占一定的内存,由系统地址寄存器(GDTR 、LDTR、IDTR) 指示其在物理存储 阅读全文
posted @ 2020-04-09 15:27 G1733 阅读(3040) 评论(0) 推荐(0) 编辑
摘要: 原文:https://blog.csdn.net/cc_net/article/details/24726287 清华大学2020操作系统课程学习:https://www.bilibili.com/video/BV1x7411T7mh?p=27 1. 内存分段 1.1 为什么分段? 在x86-16体 阅读全文
posted @ 2020-04-08 23:27 G1733 阅读(574) 评论(0) 推荐(0) 编辑
摘要: 原文地址https://blog.csdn.net/farmwang/article/details/52333583 保护模式就是对程序的运行加以保护,所以说保护模式较实模式的增强的最主要体现还不是寻址能力而是对多任务的支持,所提到的保护就是对不同任务间和同一任务内的程序加以保护,使它们的运行不受 阅读全文
posted @ 2020-04-06 23:56 G1733 阅读(2267) 评论(0) 推荐(0) 编辑
摘要: 一、整个查询集统计 Django 提供两种方法来产生统计。 第一种方法是产生整个 查询集 的统计。假设我们要统计所有书的平均价格。 Djnago 中查询所有书的语句为: >>> Book.objects.all() 在这个语句后加上一个 aggregate() 子句就行了: >>> from dja 阅读全文
posted @ 2020-03-20 17:39 G1733 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 一、Django数据库模糊查询 1.1 Q查询 1 from django.db.models import Q 2 Q(question__startswith='What') 3 4 Q(question__startswith='Who') | Q(question__startswith=' 阅读全文
posted @ 2020-03-19 19:03 G1733 阅读(950) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 23 下一页