这是在redis 3.2版本推出的,推算地理位置的信息,两地之间的距离,周围方圆的人等等场景都可以用它实现。 一、geoadd 将指定的地理空间位置(纬度、经度、名称)添加到指定的key中。 这里可以借助网上的一些查询经纬度的工具来获取数据。 geoadd china:city 121.472644 ...
分类:
其他好文 时间:
2021-06-19 19:14:32
阅读次数:
0
string类型 构造函数 public string(char[] value) public string(char[] value,int offset,int count) 拼接字符串: + or += 比较字符串 public static int Compare(string strA, ...
ArrayList的核心成员属性 public class ArrayList<E> extends AbstractList<E> implements List<E>, RandomAccess, Cloneable, java.io.Serializable { private static ...
分类:
其他好文 时间:
2021-06-18 19:30:43
阅读次数:
0
'''CSS style link rel="stylesheet" href="css" style 基本选择器 #id .class TogName * 组合选择器 x y/x > y/x + y/x ~y 属性选择器 x[a/a=b/a^=b/a$=b/a*=b/a~=b] 伪类选择器 :li ...
分类:
Web程序 时间:
2021-06-13 09:59:56
阅读次数:
0
前言 本节开始整理日志相关的东西。先整理一下日志的基本原理。 正文 首先介绍一下包: Microsoft.Extengsion.Logging.Abstrations 这个是接口包。 Microsoft.Extengsion.Logging 这个是实现包 Microsoft.Extengsion.L ...
分类:
Web程序 时间:
2021-06-08 23:42:17
阅读次数:
0
可以打开网页,不能登录,不能评论。 正常的: 其他: 删除这段: 就会这样 ...
分类:
Web程序 时间:
2021-06-08 23:37:10
阅读次数:
0
创建表 create table agg_source( \ id UInt8, \ name String, \ city String, \ money UInt32 \ ) engine=MergeTree() \ partition by city \ order by id; 插入数据 i ...
分类:
其他好文 时间:
2021-06-05 18:20:32
阅读次数:
0
如果要限制关键字参数的名字,就可以用命名关键字参数,例如,只接收city和job作为关键字参数。 这种方式定义的函数如下: def person(name, age, *, city, job) print(name, age, city, job) # 调用 person('city', 22, ...
分类:
编程语言 时间:
2021-05-24 11:07:39
阅读次数:
0
含义:又称多表查询,当查询的字段来自于多个表时,就会用到连接查询 笛卡尔乘积现象:表1 有m行,表2有n行,结果=m*n行 发生原因:没有有效的连接条件 如何避免:添加有效的连接条件 分类: 按年代分类: sql92标准:仅仅支持内连接 sql99标准【推荐】:支持内连接+外连接(左外和右外)+交叉 ...
分类:
数据库 时间:
2021-05-23 23:33:20
阅读次数:
0
use MustGoHome; --公司注册 if exists(select * from Sysobjects where name='usp_CompanyRegister') drop procedure usp_CompanyRegister; go create procedure us ...
分类:
数据库 时间:
2021-05-23 23:17:14
阅读次数:
0