This is an automated email from the ASF dual-hosted git repository.
xuanwo pushed a commit to branch reactor-redis
in repository https://gitbox.apache.org/repos/asf/opendal.git
The following commit(s) were added to refs/heads/reactor-redis by this push:
new c53d16bba Cleanup
c53d16bba is described below
commit c53d16bbae63e3375b3b260e7fe342185545251b
Author: Xuanwo <[email protected]>
AuthorDate: Tue Mar 11 22:46:25 2025 +0800
Cleanup
Signed-off-by: Xuanwo <[email protected]>
---
core/src/services/redis/backend.rs | 44 --------------------------------------
1 file changed, 44 deletions(-)
diff --git a/core/src/services/redis/backend.rs
b/core/src/services/redis/backend.rs
index ddbf28976..e745f4901 100644
--- a/core/src/services/redis/backend.rs
+++ b/core/src/services/redis/backend.rs
@@ -376,47 +376,3 @@ impl kv::Adapter for Adapter {
Ok(())
}
}
-
-// impl Access for Adapter {
-// type Reader = ();
-// type Writer = ();
-// type Lister = ();
-// type Deleter = ();
-// type BlockingReader = ();
-// type BlockingWriter = ();
-// type BlockingLister = ();
-// type BlockingDeleter = ();
-//
-// fn info(&self) -> Arc<AccessorInfo> {
-// todo!()
-// }
-//
-// async fn stat(&self, path: &str, args: OpStat) -> Result<RpStat> {
-// let mut conn = self.conn().await?;
-// let size = conn.strlen().await?;
-// }
-//
-// async fn read(&self, path: &str, args: OpRead) -> Result<(RpRead,
Self::Reader)> {
-// todo!()
-// }
-//
-// async fn write(&self, path: &str, args: OpWrite) -> Result<(RpWrite,
Self::Writer)> {
-// todo!()
-// }
-//
-// async fn delete(&self) -> Result<(RpDelete, Self::Deleter)> {
-// todo!()
-// }
-//
-// async fn list(&self, path: &str, args: OpList) -> Result<(RpList,
Self::Lister)> {
-// todo!()
-// }
-//
-// async fn copy(&self, from: &str, to: &str, args: OpCopy) ->
Result<RpCopy> {
-// todo!()
-// }
-//
-// async fn rename(&self, from: &str, to: &str, args: OpRename) ->
Result<RpRename> {
-// todo!()
-// }
-// }