1:测试数据库表usermysql> desc user$$+-------+-------------+------+-----+---------+----------------+| Field | Type | Null | Key | Default | Extra ...
分类:
数据库 时间:
2014-07-07 11:01:18
阅读次数:
222
在使用pt-online-schema-change会遇到如下的错误导致表修改失败:Copying rows caused a MySQL error 1364,Message: Field 'XXX' doesn't have a default value例子1:#修改的SQL:ALTER TA...
分类:
其他好文 时间:
2014-07-07 09:24:57
阅读次数:
442
线上业务准备使用solr做数据存放和索引的功能,其中有的字段要求会存入多个字,solr的field的multivalue可以实现这个功能。<dynamicFieldname="*_ss"type="string"indexed="true"stored="true"multiValued="true"/>下面看看其实现原理:和solr的写入document相关的两个类..
分类:
其他好文 时间:
2014-07-03 14:23:12
阅读次数:
409
之前介绍了github上的hive2solr项目和solr的multivalue功能。线上我们是采用hive计算完数据后推送到solr的方法,如果需要实现multivalue的话,默认的hive2solr是有些问题的。即使在hive中对于的field是多个字,导入solr之后也只是一个整体的字符串,比如下面表的数据如下:idte..
分类:
其他好文 时间:
2014-07-03 14:10:57
阅读次数:
199
The 10,000-Hour Rule says that you need approximately 10,000 hours of practice to become a world-class expert in a field. There is no other way: if yo...
分类:
其他好文 时间:
2014-07-03 12:25:37
阅读次数:
214
【Transform & Physics】1、Space。Unity定义了Space枚举值,此值如下: 通常通过Space.World、Space.Self来区别一个Vector是按世界坐标系作用还是按本地坐标系作用。参考:file:///D:/Program%20Files%20(x86)/...
分类:
其他好文 时间:
2014-07-03 10:38:28
阅读次数:
182
DateField TimeField 日期控件 时间控件 日历控件在extjs中,自带了两个与时间有关的控件,html:/div>js://日期格式参考extjsapi文档的Date类型, 参考下面的FormPanelvar md = new Ext.form.DateField({ field....
分类:
Web程序 时间:
2014-07-02 19:36:34
阅读次数:
930
1、使用datagrid实现列表table,注意参数singleSelect:true,2、formatter ID的显示 frozenColumns:[[{ field:'id', hidden:false, formatte...
分类:
Web程序 时间:
2014-07-01 21:04:08
阅读次数:
4201
1. 射线用Physics.Raycast 都可以判断,用collider.Raycast 只在某些(不明)情况下可以 void Update() { Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition); ...
分类:
其他好文 时间:
2014-07-01 13:50:55
阅读次数:
183
创建索引的过程如下:
(1)、建立索引器IndexWriter,这相当于一本书的框架
(2)、建立文档对象Document,这相当于一篇文章
(3)、建立信息字段对象Field,这相当于一篇文章中的不同信息(标题、正文等)。
(4)、将Field添加到Document里面。
(5)、将Document添加到IndexWriter里面。
(6)、关闭索引器IndexWriter。...
分类:
其他好文 时间:
2014-07-01 06:30:34
阅读次数:
334