- 浏览: 85620 次
- 性别:
- 来自: 北京
最新评论
-
panghaoyu:
实现一个智能提示功能需要ajax、数据库、jsp/php、算法 ...
solr 短文本搜索(模糊,拼音,单字分词)
文章列表
1.mysql主从延迟达41万秒
2.redis.clients.jedis.exceptions.JedisDataException: OOM command not allowed when used memory > 'maxmemory'. redis内存已满
cd /data3/data
tail -n 100 -f sw2036-slow.log |grep plugin
连接服务的方式和协议
Dubbo协议:采用NIO复用单一长连接,并使用线程池并发处理请求,减少握手和加大并发效率,在大文件传输时,单一连接会成为瓶颈
Rmi协议:可与原生RMI互操作,基于TCP协议
Hessian协议:可与原生Hessian互操作,基于HTTP协议
HTTP协议:
webservice协议:
由于java源代码是用的UTF-8编码,Eclipse中默认编码是GB18030,因此,在生成javadoc的时候,需要手工指定一下编码和字符集。
解决方案是:
主菜单–>Project–>Generate javadoc–>next>next–> 在 “Extra javadoc options”下面的文本框中填入 ” -encoding UTF-8 -charset UTF-8 “.
页面端:
function getMsg(){
$.ajax({
type: 'POST',
url: "http://demo.sq.com/user/getCardMessage",
data: {id: 23},
dataType: 'JSONP',
jsonp:"callback",
jsonpCallback:"success_jsonpCallba ...
单参数array数组的类型:
Xml代码
<select id="dynamicForeach2Test" resultType="Blog">
select * from t_blog where id in
$.ajax({
type: 'POST',
url: "/admin/my/test",
data: {userid: userid,status:status},
dataType: "json",
timeout: 10000,
error: function () {
alert("失败!");
},
success: function (data) ...
SELECT table_name, partition_name, table_rows
FROM information_schema.partitions WHERE table_name='biz_log';
solr原子更新的时候,这条记录字段为store="true"的时候可以保存原来索引,
如果store="false"的时候原来索引丢失
spring mvc报错:The request sent by the client was syntactically incorrect. 是Date格式转换的错误
解决方案:建议先自动转成String类型,再手动转成Date类型
public String list(ModelMap model,Long userId,String beginDate,String endDate){
try {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
...
关闭网页标签时触发事件
- 博客分类:
- js
!function(){
var bool;
window.onbeforeunload = function(){
if(bool) return "你要离开网页吗?";
}
window.onmouseover = function(){
bool = false;
}
window.onmouseout = function(){
bool = true;
}
}();
设置 tomcat环境变量 setenv,sh
System.getProperty("zookeeperHost");获取参数
/**
* 分类
*/
@Field("category")
private List<String> category;
solr 通过URL的方式删除索引数据以及结构
- 博客分类:
- solr
1.删除索引数据
Solr 删除全部索引:http://localhost:8080/solr/update/?stream.body=<delete><query>*:*</query></delete>&stream.contentType=text/xml;charset=utf-8&commit=true
solr 删除指定ID的索引:http://localhost:8080/solr/update/?stream.body=<delete><id>1</id></dele ...