forked from apache/opendal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core): implement service for Mini Moka (apache#2537)
* feat(service/mini-moka): add service for mini-moka * feat(website): add service mini-moka to docusaurus website * chore(service/mini-moka): add moka comparison table in comment * fix: drop miss-added file
- Loading branch information
Showing
17 changed files
with
276 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,6 @@ flamegraph.svg | |
perf.* | ||
|
||
**/.DS_Store | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,205 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
use std::collections::HashMap; | ||
use std::fmt::Debug; | ||
use std::time::Duration; | ||
|
||
use async_trait::async_trait; | ||
use log::debug; | ||
use mini_moka::sync::Cache; | ||
use mini_moka::sync::CacheBuilder; | ||
|
||
use crate::raw::adapters::typed_kv; | ||
use crate::*; | ||
|
||
/// [mini-moka](https://github.com/moka-rs/mini-moka) backend support. | ||
/// | ||
/// # Capabilities | ||
/// | ||
/// This service can be used to: | ||
/// | ||
/// - [x] stat | ||
/// - [x] read | ||
/// - [x] write | ||
/// - [x] create_dir | ||
/// - [x] delete | ||
/// - [ ] copy | ||
/// - [ ] rename | ||
/// - [ ] list | ||
/// - [ ] ~~scan~~ | ||
/// - [ ] presign | ||
/// - [ ] blocking | ||
/// | ||
/// # Notes | ||
/// | ||
/// To better assist you in choosing the right cache for your use case, | ||
/// Here's a comparison table with [moka](https://github.com/moka-rs/moka#choosing-the-right-cache-for-your-use-case) | ||
#[derive(Default, Debug)] | ||
pub struct MiniMokaBuilder { | ||
/// Sets the max capacity of the cache. | ||
/// | ||
/// Refer to [`mini-moka::sync::CacheBuilder::max_capacity`](https://docs.rs/mini-moka/latest/mini_moka/sync/struct.CacheBuilder.html#method.max_capacity) | ||
max_capacity: Option<u64>, | ||
/// Sets the time to live of the cache. | ||
/// | ||
/// Refer to [`mini-moka::sync::CacheBuilder::time_to_live`](https://docs.rs/mini-moka/latest/mini_moka/sync/struct.CacheBuilder.html#method.time_to_live) | ||
time_to_live: Option<Duration>, | ||
/// Sets the time to idle of the cache. | ||
/// | ||
/// Refer to [`mini-moka::sync::CacheBuilder::time_to_idle`](https://docs.rs/mini-moka/latest/mini_moka/sync/struct.CacheBuilder.html#method.time_to_idle) | ||
time_to_idle: Option<Duration>, | ||
} | ||
|
||
impl MiniMokaBuilder { | ||
/// Sets the max capacity of the cache. | ||
/// | ||
/// Refer to [`mini-moka::sync::CacheBuilder::max_capacity`](https://docs.rs/mini-moka/latest/mini_moka/sync/struct.CacheBuilder.html#method.max_capacity) | ||
pub fn max_capacity(&mut self, v: u64) -> &mut Self { | ||
if v != 0 { | ||
self.max_capacity = Some(v); | ||
} | ||
self | ||
} | ||
|
||
/// Sets the time to live of the cache. | ||
/// | ||
/// Refer to [`mini-moka::sync::CacheBuilder::time_to_live`](https://docs.rs/mini-moka/latest/mini_moka/sync/struct.CacheBuilder.html#method.time_to_live) | ||
pub fn time_to_live(&mut self, v: Duration) -> &mut Self { | ||
if !v.is_zero() { | ||
self.time_to_live = Some(v); | ||
} | ||
self | ||
} | ||
|
||
/// Sets the time to idle of the cache. | ||
/// | ||
/// Refer to [`mini-moka::sync::CacheBuilder::time_to_idle`](https://docs.rs/mini-moka/latest/mini_moka/sync/struct.CacheBuilder.html#method.time_to_idle) | ||
pub fn time_to_idle(&mut self, v: Duration) -> &mut Self { | ||
if !v.is_zero() { | ||
self.time_to_idle = Some(v); | ||
} | ||
self | ||
} | ||
} | ||
|
||
impl Builder for MiniMokaBuilder { | ||
const SCHEME: Scheme = Scheme::MiniMoka; | ||
type Accessor = MiniMokaBackend; | ||
|
||
fn from_map(map: HashMap<String, String>) -> Self { | ||
let mut builder = MiniMokaBuilder::default(); | ||
|
||
map.get("max_capacity") | ||
.map(|v| v.parse::<u64>().map(|v| builder.max_capacity(v))); | ||
map.get("time_to_live").map(|v| { | ||
v.parse::<u64>() | ||
.map(|v| builder.time_to_live(Duration::from_secs(v))) | ||
}); | ||
map.get("time_to_idle").map(|v| { | ||
v.parse::<u64>() | ||
.map(|v| builder.time_to_idle(Duration::from_secs(v))) | ||
}); | ||
builder | ||
} | ||
|
||
fn build(&mut self) -> Result<Self::Accessor> { | ||
debug!("backend build started: {:?}", &self); | ||
|
||
let mut builder: CacheBuilder<String, typed_kv::Value, _> = Cache::builder(); | ||
// Use entries' bytes as capacity weigher. | ||
builder = builder.weigher(|k, v| (k.len() + v.size()) as u32); | ||
if let Some(v) = self.max_capacity { | ||
builder = builder.max_capacity(v) | ||
} | ||
if let Some(v) = self.time_to_live { | ||
builder = builder.time_to_live(v) | ||
} | ||
if let Some(v) = self.time_to_idle { | ||
builder = builder.time_to_idle(v) | ||
} | ||
|
||
debug!("backend build finished: {:?}", &self); | ||
Ok(MiniMokaBackend::new(Adapter { | ||
inner: builder.build(), | ||
})) | ||
} | ||
} | ||
|
||
/// Backend is used to serve `Accessor` support in mini-moka. | ||
pub type MiniMokaBackend = typed_kv::Backend<Adapter>; | ||
|
||
#[derive(Clone)] | ||
pub struct Adapter { | ||
inner: Cache<String, typed_kv::Value>, | ||
} | ||
|
||
impl Debug for Adapter { | ||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { | ||
f.debug_struct("Adapter") | ||
.field("size", &self.inner.weighted_size()) | ||
.field("count", &self.inner.entry_count()) | ||
.finish() | ||
} | ||
} | ||
|
||
#[async_trait] | ||
impl typed_kv::Adapter for Adapter { | ||
fn info(&self) -> typed_kv::Info { | ||
typed_kv::Info::new( | ||
Scheme::MiniMoka, | ||
"mini-moka", | ||
typed_kv::Capability { | ||
get: true, | ||
set: true, | ||
delete: true, | ||
..Default::default() | ||
}, | ||
) | ||
} | ||
|
||
async fn get(&self, path: &str) -> Result<Option<typed_kv::Value>> { | ||
self.blocking_get(path) | ||
} | ||
|
||
fn blocking_get(&self, path: &str) -> Result<Option<typed_kv::Value>> { | ||
match self.inner.get(&path.to_string()) { | ||
None => Ok(None), | ||
Some(bs) => Ok(Some(bs)), | ||
} | ||
} | ||
|
||
async fn set(&self, path: &str, value: typed_kv::Value) -> Result<()> { | ||
self.blocking_set(path, value) | ||
} | ||
|
||
fn blocking_set(&self, path: &str, value: typed_kv::Value) -> Result<()> { | ||
self.inner.insert(path.to_string(), value); | ||
|
||
Ok(()) | ||
} | ||
|
||
async fn delete(&self, path: &str) -> Result<()> { | ||
self.blocking_delete(path) | ||
} | ||
|
||
fn blocking_delete(&self, path: &str) -> Result<()> { | ||
self.inner.invalidate(&path.to_string()); | ||
|
||
Ok(()) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
mod backend; | ||
pub use backend::MiniMokaBuilder as MiniMoka; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.