Redis(五)事务 引用wiki中关于事务处理的定义: Transaction processing is information processing in computer science that is divided into individual, indivisible operations called transactions. Each transaction must succeed or fail as a complete unit; it can never be o…
redis基本数据类型 redis一共分为5中基本数据类型:String,Hash,List,Set,ZSet 第一种String String类型是包含很多种类型的特殊类型,并且是二进制安全的.比如序列化的对象进行储存,比如一张图片进行二进制储存,比如一个简单的字符串数值等等. set和get方法: 设置值set name realValue 取值 get name 说明:set设置name的时候,如果name重复,设置的值会进行覆盖. setnx 方法 设置值setnx name rea…