فهرست منبع

Added incr_by

Cesar Rodas 3 سال پیش
والد
کامیت
4a720bbc5c
3فایلهای تغییر یافته به همراه13 افزوده شده و 2 حذف شده
  1. 6 0
      src/cmd/string.rs
  2. 2 2
      src/db/mod.rs
  3. 5 0
      src/dispatcher.rs

+ 6 - 0
src/cmd/string.rs

@@ -1,6 +1,12 @@
 use crate::{connection::Connection, error::Error, value::Value};
+use std::convert::TryInto;
 use bytes::Bytes;
 
+pub fn incr_by(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
+    let by: i64 = (&Value::Blob(args[2].to_owned())).try_into()?;
+    conn.db().incr(&args[1], by)
+}
+
 pub fn incr(conn: &Connection, args: &[Bytes]) -> Result<Value, Error> {
     conn.db().incr(&args[1], 1)
 }

+ 2 - 2
src/db/mod.rs

@@ -49,8 +49,8 @@ impl Db {
                 Ok(val.into())
             }
             None => {
-                entries.insert(key.clone(), "1".into());
-                Ok((1_i64).into())
+                entries.insert(key.clone(), incr_by.into());
+                Ok((incr_by  as i64).into())
             }
         }
     }

+ 5 - 0
src/dispatcher.rs

@@ -52,6 +52,11 @@ dispatcher! {
         ["write" "denyoom" "fast"],
         2,
     },
+    incrby {
+        cmd::string::incr_by,
+        ["write" "denyoom" "fast"],
+        3,
+    },
     set {
         cmd::string::set,
         ["random" "loading" "stale"],