Wesley13 Wesley13
3年前
NGUI 渲染顺序概述
以下内容基于NGUIv.3.11.2。示例是在Unity5.5中测试。渲染结构NGUI用Panel管理渲染。一个UIPanel实例表示一个Panel。UIPanel.widgets表示Panel中需要渲染的物体,UIPanel.drawCalls表示Panel中的渲染指令,而st
可莉 可莉
3年前
20180607pip install xxx报错SyntaxError invalid syntax
用pip安装时都要在cmd命令行里启动的,而在python中无法运行。退出python运行环境就再执行pip可以了。而且最好用管理员身份运行cmdC:\WINDOWS\system32cdD:\Python\APIC:\WINDOWS\system32D:D:\Python\APIpipinstallwordcloud1.4.1cp3
Easter79 Easter79
3年前
SpringBoot2.0+SpringCloud Eureka搭建高可用注册中心(Eureka之二)
上一篇中提到用SpringBoot2.0Eureka搭建服务注册中心和服务提供者,详情参考:https://www.cnblogs.com/SysoCjs/p/10127448.html(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fmp.csdn.net%2Fpostedit%
Stella981 Stella981
3年前
SpringBoot2.0+SpringCloud Eureka搭建高可用注册中心(Eureka之二)
上一篇中提到用SpringBoot2.0Eureka搭建服务注册中心和服务提供者,详情参考:https://www.cnblogs.com/SysoCjs/p/10127448.html(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fmp.csdn.net%2Fpostedit%
Easter79 Easter79
3年前
Supervisor离线安装、管理
Supervisor(http://supervisord.org/(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fsupervisord.org%2F))是用Python开发的一个client/server服务,是Linux/Unix系统下的一个进程管理工具,不支持Windows系统。
Stella981 Stella981
3年前
Spring4
    方法注入主要是用在Singleton的Object中使用非Singleton的Bean时,通过lookupmethod的那个方法来取得非Singleton的Bean。一般用的不多,在用这种定义之前最好想明白你的需求。1使用Java代码实现方法注入1.1用法示例//acl
Stella981 Stella981
3年前
Redis——集群搭建
一、Redis集群:  集群解决并发的问题;  哨兵解决高可用的问题; !(https://oscimg.oschina.net/oscnet/a3d3506dc6dcb9cbe01ee2c6a83925c98a0.png)二、集群搭建:  //基于redis5.0;   1)启动三台Linux系统,且用docke
Stella981 Stella981
3年前
Hive中collect_list全局保持顺序
我用部署的是standalone模式,local单节点计算的时候,结果没问题,当集群计算的时候因为是分布式的,因此结果是乱序的。解决方法如下:有以下Hive表的定义:createtabletopic_recommend_score(category_idint,topic_idbigint,scoredouble
Stella981 Stella981
3年前
Javascript中的基本数据类型
Undefined在var或者let中声明了变量但没有赋值时,这个变量的值就是undefined.使用typeof关键字检测未声明变量的类型为undefined.Nullnull表示一个空对象指针,所以用typeof检测null时,会返回objectundefine派生自null,
Wesley13 Wesley13
3年前
Java的进阶之道
Java的进阶之道一.温馨提示尽量用google查找技术资料。(条件允许的话)有问题在stackoverflow找找,大部分都已经有人回答。多看官方的技术文档。ibmdeveloperworkers的文章质量整体上有保障。平时花一些时间在github上阅读优