`

Memcache

 
阅读更多
1. Windows安装:

http://www.cnblogs.com/micua/p/installation-and-configuration-under-windows-memcached-instances.html

http://www.urielkatz.com/archive/detail/memcached-64-bit-windows/


2.Linux安装:

http://ccvita.com/257.html

http://blog.csdn.net/hjm4702192/article/details/7894080


3. java客户端:

https://github.com/gwhalin/Memcached-Java-Client/

https://github.com/gwhalin/Memcached-Java-Client/downloads

基于java_memcached-release_2.6.3例子:
import java.util.Date; 
import java.util.List;
import org.dao.ProjectTreeDao;
import org。entity.ProjectTree;
import com.danga.MemCached.MemCachedClient; 
import com.danga.MemCached.SockIOPool; 
 
public class MyCache { 
     
    public static void main(String[] args) { 
        MemCachedClient client=new MemCachedClient(); 
        String [] addr ={"127.0.0.1:11211"}; 
        Integer [] weights = {3}; 
        SockIOPool pool = SockIOPool.getInstance(); 
        pool.setServers(addr); 
        pool.setWeights(weights); 
        pool.setInitConn(5); 
        pool.setMinConn(5); 
        pool.setMaxConn(200); 
        pool.setMaxIdle(1000*30*30); 
        pool.setMaintSleep(30); 
        pool.setNagle(false); 
        pool.setSocketTO(30); 
        pool.setSocketConnectTO(0); 
        pool.initialize(); 
         
        ProjectTreeDao projectTreeDao = new ProjectTreeDao();
        boolean dbQuery = true;
        List<ProjectTree> allprList = (List<ProjectTree>)client.get("allProjectTrees");
        if (allprList == null) {
            allprList = projectTreeDao.findAll();
            client.set("allProjectTrees", allprList);
            dbQuery = true;
            System.out.println("DATABASE -- All trees size: "+allprList.size());
        } else {
            dbQuery = false;
            System.out.println("CACHED -- All trees size: "+allprList.size());
        }      
        if (!dbQuery) {
            client.delete("allProjectTrees");
        }         
//      将数据放入缓存 
        client.set("test2","test2"); 
//        client.set("allProjectTrees", allProjectTrees);
         
//      将数据放入缓存,并设置失效时间 
        Date date=new Date(2000000); 
        client.set("test1","test1", date);         
         
//      获取缓存数据 
        String str =(String)client.get("test1"); 
        System.out.println(str);                
    }      


另外的例子:

import com.danga.MemCached.MemCachedClient;
import com.danga.MemCached.SockIOPool;

public class MemCacheInvoke {

    protected static MemCachedClient mcc = new MemCachedClient();
   
    static{
        String[] servers =
            {
                    "10.182.105.30:11211"
//                    "10.182.105.30:11211",
//                    "server3.mydomain.com:1624"
            };
//        Integer[] weights = {3, 2};
        SockIOPool pool = SockIOPool.getInstance();
        pool.setServers(servers);
//        pool.setWeights(weights);
        pool.setNagle(false);
        pool.setSocketTO(3000);
        pool.setSocketConnectTO(0);
        pool.initialize();
    }
   
    public static void main(String[] args) {
        mcc.set("foo", "This is a test String");
        String bar = mcc.get("foo").toString();
        System.out.println(">>> " + bar);
    }
}

4. Java使用方法:

http://zaq369cde.iteye.com/blog/1969619

https://zh.wikipedia.org/wiki/Memcached

http://www.journaldev.com/24/memcached-java-client-with-sample-program

https://code.google.com/p/memcache-client-forjava/

https://cloud.google.com/appengine/docs/java/memcache/

http://sacharya.com/using-memcached-with-java/

5. Maven下载Memcached Java Client

http://blog.csdn.net/bluishglc/article/details/6910556

通过java-memcached-2.6.6.pom,执行命令:

mvn install:install-file -Dfile=/path/to/java-memcached-release_2.6.6.jar -DpomFile=/path/to/java-memcached-2.6.6.pom

<?xml version="1.0" encoding="UTF-8"?> 
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
  <modelVersion>4.0.0</modelVersion> 
  <groupId>com.danga</groupId> 
  <artifactId>java-memcached</artifactId> 
  <version>2.6.6</version> 
<dependencies> 
    <dependency> 
        <groupId>org.slf4j</groupId> 
        <artifactId>slf4j-simple</artifactId> 
        <version>1.6.2</version> 
    </dependency> 
    <dependency> 
        <groupId>org.slf4j</groupId> 
        <artifactId>slf4j-api</artifactId> 
        <version>1.6.2</version> 
    </dependency> 
    <dependency> 
        <groupId>commons-pool</groupId> 
        <artifactId>commons-pool</artifactId> 
        <version>1.5.6</version> 
    </dependency> 
</dependencies> 
</project>

使用旧版的可以通过

<dependency>
<groupId>com.whalin</groupId>
<artifactId>Memcached-Java-Client</artifactId>
<version>3.0.2</version>
</dependency>


参考:
http://www.360doc.com/content/13/0411/15/2569758_277586886.shtml


分享到:
评论

相关推荐

    memcache1.2.1 for windows

    标题"memcache1.2.1 for windows"指的是Memcache的1.2.1版本,这是专为Windows操作系统设计的一个内存缓存系统。Memcache是一个广泛使用的开源高性能分布式内存对象缓存系统,它能够通过在内存中存储数据来减少对...

    memcache安装与基本操作详解

    ### Memcache安装与基本操作详解 #### 一、前言 Memcache是一种高性能的分布式内存对象缓存系统,用于加速动态Web应用,减轻数据库负担。本文将详细介绍如何安装配置Memcache,并提供基本的操作示例。 #### 二、...

    PHP7.x 8.0 memcache dll php_memcache.dll

    memcache是广泛应用于Web开发中的一个内存对象缓存系统,它能够提高网站性能,通过将数据存储在内存中,减少对数据库的访问,从而加快数据读取速度。 PHP的memcache扩展允许开发者在PHP应用程序中与memcached服务器...

    Memcache win版 服务器和.net驱动

    **Memcache Win版服务器与.NET驱动详解** Memcache是一款高性能的分布式内存缓存系统,它最初是为了解决Web应用程序的数据库负载问题而设计的。通过将数据存储在内存中,Memcache能够快速地提供数据,减少对数据库...

    php 5.4.15 64位 memcache.dll

    Memcache 是一种广泛使用的分布式内存缓存系统,用于在 Web 应用程序中提高数据读取速度,通过存储经常访问的数据到内存中,避免了频繁的数据库查询,从而提升了整体性能。 描述中的“实测可以使用”意味着这个 ...

    【汇总】Memcache

    **Memcache 深度解析** Memcache 是一个高性能、分布式的内存对象缓存系统,广泛应用于Web应用中,用于缓解数据库的负载压力。它通过将数据存储在内存中,以便快速访问,从而提高应用程序的响应速度。在本文中,...

    memcache win7 64位 安装文件

    **Memcache** 是一款高效的分布式内存对象缓存系统,它被广泛应用于Web应用程序中,用于减轻数据库负载,提高数据读取速度。在Windows操作系统上,尤其是64位的Windows 7系统,安装和配置Memcache可以帮助提升应用...

    memcache 扩展,php5.5 32,64 位,以及其他版本下载地址

    Memcache 是一个高性能的分布式内存对象缓存系统,它能够通过在内存中存储数据来减少对数据库的访问,从而提高Web应用的性能。在PHP环境中,Memcache扩展使得PHP脚本可以直接与Memcache服务器进行交互,实现数据的...

    PHP memcache 多版本拓展

    $memcache = new Memcache; // 连接到Memcached服务器 $memcache-&gt;connect('localhost', 11211) or die("无法连接"); // 存储数据 $memcache-&gt;set('key', 'value', 0, 60); // key是键,value是值,0表示非持久化...

    PHP7.1.xx-7.3xx各版本适配memcache.dll

    标签 "memcached" 和 "memcache.dll" 都与分布式缓存服务有关,但请注意,`memcache` 和 `memcached` 是两个不同的扩展。`memcache` 是用于与原始Memcached服务交互的PHP扩展,而 `memcached` 是另一个扩展,通常...

    php_memcache-2.2.7-7.0-nts-vc14-x64 扩展DLL

    Memcache是另一种重要的技术,它是一个高性能的分布式内存对象缓存系统,可以用来提高动态网站的速度。在PHP中,通过扩展来支持Memcache,使得数据存储和检索更加便捷。本文将围绕...

    windows php memcache 扩展

    Memcache是一款高性能的分布式内存对象缓存系统,它可以用来存储各种数据,如数据库查询结果、静态文件等,以减少对数据库的访问,提高网站性能。在Windows操作系统上配置PHP与Memcache的扩展,可以实现PHP应用程序...

    memcache安装php5.2.17的php_memcache.dll

    Memcache是一种广泛使用的分布式内存对象缓存系统,它可以在服务器集群间通过网络共享小块内存,从而提升应用程序的性能,减少数据库负载。在PHP中,我们通常使用php_memcache.dll扩展来与Memcache服务器进行交互。...

    Memcache原理及实现

    【Memcache原理及实现】 Memcache,全称Memcached,是一种高性能的分布式内存对象缓存系统,主要用于减轻数据库的负载。它将数据存储在内存中,以键值对的形式提供快速访问,尤其适用于高并发场景。Memcache最初由...

    memCache源码java客户端

    **memCache源码分析——Java客户端** memCache是一款高性能、分布式的内存对象缓存系统,常用于减轻数据库的负载,提升应用性能。它的主要特点是基于内存存储,操作速度快,无持久化机制,适用于缓存非关键数据。在...

    php_memcache-3.0.9 for php7-nts-vc14-x64 扩展DLL,亲测有效

    标题中的“php_memcache-3.0.9 for php7-nts-vc14-x64 扩展DLL,亲测有效”表明这是一个专为PHP 7设计的Memcache扩展库,版本为3.0.9,适用于非线程安全(NTS)且基于Visual C++ 14编译器的64位系统。这个扩展是经过...

    MemCache开发说明文档

    MemCache是一种广泛应用于Web开发中的高性能分布式内存对象缓存系统,其主要目的是通过将数据存储在内存中,以便快速访问,从而显著提升系统的响应速度。最初由Danga Interactive开发,主要用于提升LiveJournal的...

    最新windows版php_memcache.dll和memcache.exe

    最新windows的memcache模块下载 这个模块是平和php5.3的,在我的windowsxp php5.3.5上安装成功 里面有两个php库,一个php_memcache.dll.vc6 和一个php_memcache.dll.vc9 另外一个windows的memcache.exe文件,都是网上...

    memcache_php使用测试

    **MEMCACHE_COMPRESSED** 是一个整型常量,用于在使用`Memcache::set()`, `Memcache::add()`和相关方法时开启压缩功能,这有助于在网络传输过程中减小数据包的大小,从而提高数据读写效率,特别适用于处理大量文本或...

Global site tag (gtag.js) - Google Analytics