2017年2月24日

win7 安装redis服务

摘要: Redis官方是不支持windows的,只是 Microsoft Open Tech group 在 GitHub上开发了一个Win64的版本,项目地址是: https://github.com/MSOpenTech/redis 其实安装很简单,使用Microsoft Open Tech group 阅读全文

posted @ 2017-02-24 17:54 kingofyz 阅读(774) 评论(0) 推荐(0)

python str与bytes之间的转换

摘要: # bytes object b = b"example" # str object s = "example" # str to bytes sb = bytes(s, encoding = "utf8") # bytes to str bs = str(b, encoding = "utf8") 阅读全文

posted @ 2017-02-24 15:21 kingofyz 阅读(106803) 评论(2) 推荐(7)

导航