- 浏览: 252591 次
- 性别:
- 来自: 长沙
最新评论
-
maozilee:
njoiop 写道看得懂吗,看到这个还不错(http://ww ...
使用百度地图API将谷歌地图坐标转换为百度地图坐标 -
njoiop:
看得懂吗,看到这个还不错(http://www.haoserv ...
使用百度地图API将谷歌地图坐标转换为百度地图坐标 -
di1984HIT:
不错。,不错
MySQL 5.5中使用UNIX_TIMESTAMP分区【按天】 -
zhouhongyan123:
js地址变了!! http://developer.baidu ...
GPS定位转百度坐标,精度很高! -
tanier53:
那我最近也在做大批量导入这个功能,你说得比较好,但我有疑问数据 ...
用Java向数据库中插入大量数据时的优化
文章列表
Memcached对象缓存实现重点
- 博客分类:
- Memcached
Memcached中我们常常需要自定义一些数据,所以,单纯的Key-Value的格式无法完成需求,所以我们需要把这个value部分 对象化,而memcache里面要 存储对象并非传统,它需要用工具序列化才行,如下列代码:
import java.io.Serializable;
public class TBean implements Serializable {
private static final long serialVersionUID = 1945562032261336919L;
private String name;
public S ...
public class Test {
private static final double EARTH_RADIUS = 6378137;
private static double rad(double d)
{
return d * Math.PI / 180.0;
}
/** *//**
* 根据两点间经纬度坐标(double值),计算两点间距离,单位为米
* @param lng1
* @param lat1
* @param lng2
...
2.6.2版本
从这里下载最新的代码:https://github.com/gwhalin/Memcached-Java-Client/downloads
直接覆盖升级就行!2.6.2版本相对于前面的2.6.1版本只是添加了SASL 支持和修改了一些代码,最大的革新还是2.6.1开始:
Memcached Java Client推出的2.6.1发布版是基于全新的performance分支,具有如下重大改进:
较之老版本,在性能上有300%左右的提升;
兼容老版本,用户无须修改自己的源代码;
支持多个memcached协议,包括text,ud ...
/Eclair/hardware/libhardware_legacy/include/hardware_legacy/gps.h
typedef struct { /** Contains GpsLocationFlags bits. */ uint16_t flags; /** Represents latitude in degrees. */ double latitude; /** Represents longitude in degrees. */ double ...
获取GPS功能是否禁用:
mgr=(LocationManager)getSystemService(LOCATION_SERVICE);
if(mgr.isProviderEnabled((android.location.LocationManager.GPS_PROVIDER )))
Toast.makeText(TestActivity.this,"gps enable", Toast.LENGTH_SHORT).show();
else Toast.makeText(TestActivity.this," ...
package android.test;
import java.util.Iterator;
import android.app.Activity;
import android.location.Criteria;
import android.location.GpsSatellite;
import android.location.GpsStatus;
import android.location.Location;
import android.location.LocationListener;
import android.locatio ...
Java 字符串<-->时间戳 相互转换
- 博客分类:
- 网络编程
package ceshi;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class stringinttimestamp {
public static void main(String[] args) {
String time = "2010年12月08日11时17分00秒";
System.out.println(time);
// 字符串=======>时间戳 ...
规模测试BoneCP,出现如下错误,问题核心:
com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: The driver was unable to create a connection due to an inability to establish the client portion of a socket.
即,系统开不出资源!
2011-09-22 00:35:13,453 WARN ConnectionPartition - BoneCP detected an unclosed con ...
BoneCP学习笔记——配置参数
- 博客分类:
- 数据库编程
一、BoneCP配置文件格式(bonecp-config.xml):
Xml代码
<?xml version="1.0"
BoneCP is a fast, free, open-source, Java database connection pool (JDBC Pool) library. If you are familiar with C3P0 and DBCP then you already know what this means. For the rest, this is a library that will manage a database connection for you to get faster database access in your application.Bo ...
在修改这2个配置选项就碰到了一些问题,网上搜索了很多资料,都说使用下面的命令启动服务就可以:c:\memcached\memcached.exe -p 12345 -m 1024 -d start , -p 表示要修改的端口, -m表示占用的最大内存(单位为M)。但是无论怎么调用这个命令,发现端口一直还是11211。打开windows服务控制面板一看,发现memcached.exe 默认安装的服务器启动参数中根本没写-p -m的参数,只有1个 -d runservice参数。所以不管用什么命令启动服务都是没用的,见下图:于是就想到直接修改windows服务的启动参数,操作如下,打开注册表 ...
一般情况下,我们用linux作为生产环境,但是开发还是在windows下面,所以我们需要 win版本。。但是memcache官方网站只提供了源码。
下面介绍使用第三方编译的win版本的方法:
这是一个由Kenneth Dalgleish基于Kronuz的1.2.1构建。官方的memcached的团队不对这个版本支持!
核心关键在这个:
http://splinedancer.com/memcached-win32/
memcached for Windows
This is a port of memcached to the win32 a ...
netstat [-a] [-e] [-n] [-o] [-p Protocol] [-r] [-s] [Interval]
参数解释:
-a
显示所有活动的 TCP 连接以及计算机侦听的 TCP 和 UDP 端口。
-e
显示以太网统计信息,如发送和接收的字节数、数据包数。该参数可以与 -s 结合使用 ...
A:我觉得最好的傻瓜办法是:
直接用eclipse打包成可运行的jar包(Runnable Jar File),然后双击就能运行!
要指定main类的,在项目里,一般的程序只要带main()就可以直接双击运行!完美!
B:网上找到一个最笨的方法:
step1:用eclipse导出(也可以用jar命令)jar包,并指定 Main-Class,比如Main-Class: com.skymobi.csj.CsjMain
step2:编写bat
step2.1:添加classpath,要将所有依赖的jar和properties用绝对路径加入,注意必须绝对路 ...
Windows下面操作的整体流程:
下载Nginx--》解压——》修改nginx.conf--》添加proxy.conf文件--》双击启动Nginx.exe即可!
1、Win下载:nginx-0.8.31 ,地址:http://sysoev.ru/nginx/nginx-0.8.31.zip
添加的proxy.conf 文件中加入如下内容:
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_h ...