环境oracle 11.2.0.4, linux redhat 6.9 RAC2个实例 1.问题现象 sqlplus登录用户hang住 oracle@wocdb6 ~]$ sqlplus wa/Sx SQL*Plus: Release 11.2.0.4.0 Production on Thu Jul ...
分类:
数据库 时间:
2020-07-26 23:22:22
阅读次数:
114
开启全局缓存 <!--显式的开启全局缓存--><setting name="cacheEnabled" value="true"/>在要使用二级缓存的Mapper中开启<!--在当前Mapper.xml中使用二级缓存--><cache/>也可以自定义参数<cache eviction="FIFO" ...
分类:
其他好文 时间:
2020-07-26 19:37:00
阅读次数:
79
安装Ruby语言 0.查看哪些是稳定版 http://www.ruby-lang.org/zh_cn/downloads/ 1.网站下载 https://cache.ruby-china.com/pub/ruby/ruby-2.6.6.tar.xz 2.也可以wget下载 wget https:// ...
分类:
其他好文 时间:
2020-07-24 22:04:57
阅读次数:
73
1. 功能说明 @Cacheable 注解在方法上,表示该方法的返回结果是可以缓存的。也就是说,该方法的返回结果会放在缓存中,以便于以后使用相同的参数调用该方法时,会返回缓存中的值,而不会实际执行该方法。 注意,这里强调了一点:参数相同。这一点应该是很容易理解的,因为缓存不关心方法的执行逻辑,它能确 ...
分类:
编程语言 时间:
2020-07-24 18:56:53
阅读次数:
59
NoSQL 有分很多种,其中key-value NoSQL (Redis, MemcacheD, etc) 的选用相对比较清楚些,大多是当后端Data storage的cache层来用。这篇主要想请教Column Family NoSQL (e.g. Cassandra, Hbase) 和SQL之间 ...
分类:
数据库 时间:
2020-07-24 15:31:56
阅读次数:
77
session.auto_start=0 修改为 session.auto_start=1;
output_buffering = Off 修改为 output_buffering = On; ...
分类:
数据库 时间:
2020-07-23 18:56:25
阅读次数:
86
1:核心代码 JSONObject json=(JSONObject) JSON.parse(responseContent); byte [] compress=Base64.decodeBase64((json.getString("result").getBytes("UTF-8"))); ( ...
分类:
其他好文 时间:
2020-07-22 20:26:49
阅读次数:
74
先看MSDN上的解释: HttpContext.Current.Cache:为当前 HTTP 请求获取Cache对象。HttpRuntime.Cache:获取当前应用程序的Cache。 我们再用.NET Reflector工具看看HttpContext.Cache和HttpRuntime.Cache ...
分类:
Web程序 时间:
2020-07-22 20:06:26
阅读次数:
87
1. 编译安装 memcached 见官方网站 http://memcached.org 2. 编写开机启动脚本 memcached (最简化版) #!/bin/sh memcached -d -m 1024 -u root -l 127.0.0.1 -p 11211 -c 2048 -P /tmp ...
分类:
系统相关 时间:
2020-07-22 16:25:18
阅读次数:
99
在 node 环境中,有两个内置的全局变量无需引入即可直接使用,并且无处不见,它们构成了 nodejs 的模块体系: module 与 require。以下是一个简单的示例 const fs = require('fs') const add = (x, y) => x + y module.exp ...
分类:
其他好文 时间:
2020-07-22 11:13:31
阅读次数:
101