• memcached+php客户端


    连接memcached

    <?php

    $mem = new Memcache;

    $mem->connect('localhost',11211) or die("connected failed !!!");

    ?>

    写入数据

    <?php

    $mem->set('key1','test value',0,20);

    ?>

    读取数据

    <?php

    $key1 = $mem->get('key1');

    echo $key1;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     

    ?>

  • 相关阅读:
    [转]优秀的程序员不会觉得累成狗是一种荣耀
    .NET读写Excel工具Spire.XlS使用(DataExport )
    WPF之Binding深入探讨
    第一个WPF应用程序
    Visio作图
    唯一的重复元素
    Strange Problem O(∩_∩)O~
    数据库知识点①
    HDU 2825 Wireless Password
    POJ 1625 Censored!
  • 原文地址:https://www.cnblogs.com/no314/p/3655877.html
Copyright © 2020-2023  润新知