安装 python  memcache 过程略

1 root@Veda:~# python 2 Python 2.7.2+ (default, Oct 4 2011, 20:03:08) 3 [GCC 4.6.1] on linux2 4 Type "help", "copyright", "credits" or "license" for more information. 5 >>> import memcache 6 >>> mc = memcache.Client(['127.0.0.1:12333']) 7 >>> mc.set("foo","bar") 8 True 9 >>> mc.get("foo") 10 'bar' 11 >>>

相关文章:

  • 2021-05-30
  • 2022-01-11
  • 2022-01-08
  • 2022-02-04
  • 2022-12-23
猜你喜欢
  • 2021-12-26
  • 2021-09-20
  • 2022-01-18
  • 2021-09-03
  • 2021-09-19
  • 2022-12-23
  • 2021-08-22
相关资源
相似解决方案