redis常用命令 1、SET key1 value1 例:SET runoobkey redis 2、DEL key1 例:DEL runoobkey 3、GET key1 例:GET runoobkey 4、LPUSH key1 value1 例:LPUSH runoobkey redis 向列 ...
                            
                            
                                分类:
其他好文   时间:
2020-07-26 00:01:06   
                                阅读次数:
66
                             
                    
                        
                            
                            
                                Reids的种淘汰策略: noeviction: 不删除策略, 达到最大内存限制时, 如果需要更多内存, 直接返回错误信息。 大多数写命令都会导致占用更多的内存(有极少数会例外, 如 DEL )。 allkeys-lru: 所有key通用; 优先删除最近最少使用(less recently used ...
                            
                            
                                分类:
其他好文   时间:
2020-07-23 23:05:27   
                                阅读次数:
84
                             
                    
                        
                            
                            
                                    1 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, 2 pre, a, abbr, acronym, address, big, cite, code, del, dfn, e ...
                            
                            
                                分类:
Web程序   时间:
2020-07-23 18:57:16   
                                阅读次数:
74
                             
                    
                        
                            
                            
                                    动态节点事件 $("#addPopuForm").on("click", '.del-card', function () { $(this).parent().remove(); }); 事件 focus 获取焦点事件 blur 失去焦点事件 hover 鼠标悬停事件 mouseleave 鼠标移 ...
                            
                            
                                分类:
Web程序   时间:
2020-07-22 16:14:35   
                                阅读次数:
101
                             
                    
                        
                            
                            
                                    ##1、创建数据库 create database xxx; 创建后台数据库 ##2、创建用户、授权 grant all on 数据库.* to 用户@'%'identified by 'password'; GRANT SELECT, INSERT, UPDATE, REFERENCES, DEL ...
                            
                            
                                分类:
数据库   时间:
2020-07-22 01:49:24   
                                阅读次数:
102
                             
                    
                        
                            
                            
                                    1、删除repository库目录下所有后缀名是.lastUpdated的文件 2、进入maven本地仓库地址:CMD进入windows的路径(或在仓库目录的地址栏直接输入CMD,回车自动打开) 3、执行命令for /r %i in (*.lastUpdated) do del %i ...
                            
                            
                                分类:
编程语言   时间:
2020-07-19 16:09:57   
                                阅读次数:
183
                             
                    
                        
                            
                            
                                    条件: 系统:CentOS 7 网卡: eth0 内网 网关:192.168.1.1 eth1 外网 网关:10.0.0.1 配置: 先安装net-tools:yum -y install net-tools route del default #删除默认路由 route add -net 192. ...
                            
                            
                                分类:
其他好文   时间:
2020-07-17 11:31:43   
                                阅读次数:
74
                             
                    
                        
                            
                            
                                    在不知道包名的情况下,在手机里先打开要测试的APP,执行如下命令:adb shell dumpsys window w |findstr \/ |findstr name=;获取包名 C:\Users\del>adb shell dumpsys window w |findstr \/ |finds ...
                            
                            
                                分类:
移动开发   时间:
2020-07-11 18:55:10   
                                阅读次数:
207
                             
                    
                        
                            
                            
                                    C:\Users\del>adb shell dumpsys batterystats | more > C:\Users\del\Desktop\a.txt ——整个电池信息 C:\Users\del>adb shell dumpsys batterystats com.wawj.app.t |  ...
                            
                            
                                分类:
移动开发   时间:
2020-07-11 16:51:57   
                                阅读次数:
208
                             
                    
                        
                            
                            
                                    1 public ActionResult Show() 2 { 3 return View(); 4 } 5 public ActionResult Add() 6 { 7 return View(); 8 } 9 public ActionResult Del() 10 { 11 return  ...
                            
                            
                                分类:
Web程序   时间:
2020-07-10 10:13:58   
                                阅读次数:
101