Skip to content

Commit

Permalink
Merge pull request #34 from GnomedDev/dashmap-6
Browse files Browse the repository at this point in the history
[sync] Update to DashMap 6
  • Loading branch information
tatsuya6502 committed Sep 8, 2024
2 parents 7b7a522 + 309fa89 commit ee2d64f
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 50 deletions.
6 changes: 0 additions & 6 deletions .ci_extras/pin-crate-vers-msrv.sh

This file was deleted.

6 changes: 1 addition & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
rust:
- stable
- beta
- 1.61.0 # MSRV
- 1.76.0 # MSRV
- nightly # For checking minimum version dependencies.

steps:
Expand All @@ -42,10 +42,6 @@ jobs:
if: ${{ matrix.rust == 'nightly' }}
run: cargo update -Z minimal-versions

- name: Pin some dependencies to specific versions (MSRV only)
if: ${{ matrix.rust == '1.61.0' }}
run: ./.ci_extras/pin-crate-vers-msrv.sh

- name: Show cargo tree
run: cargo tree

Expand Down
24 changes: 9 additions & 15 deletions .github/workflows/LinuxCrossCompileTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ name: Linux cross compile tests
on:
push:
paths-ignore:
- '.devcontainer/**'
- '.gitpod.yml'
- '.vscode/**'
- 'tests/**'
- ".devcontainer/**"
- ".gitpod.yml"
- ".vscode/**"
- "tests/**"
pull_request:
paths-ignore:
- '.devcontainer/**'
- '.gitpod.yml'
- '.vscode/**'
- 'tests/**'
- ".devcontainer/**"
- ".gitpod.yml"
- ".vscode/**"
- "tests/**"
schedule:
# Run against the last commit on the default branch on Friday at 9pm (UTC?)
- cron: '0 21 * * 5'
- cron: "0 21 * * 5"

jobs:
linux-cross:
Expand All @@ -32,12 +32,6 @@ jobs:
rust-version: stable
- target: armv5te-unknown-linux-musleabi
rust-version: stable
- target: mips-unknown-linux-musl
rust-version: "1.72.1"
cargo-version: "+1.72.1"
- target: mipsel-unknown-linux-musl
rust-version: "1.72.1"
cargo-version: "+1.72.1"

steps:
- name: Checkout Mini Moka
Expand Down
7 changes: 3 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "mini-moka"
version = "0.10.3"
edition = "2018"
rust-version = "1.61"
rust-version = "1.76"

description = "A lighter edition of Moka, a fast and concurrent cache library"
license = "MIT OR Apache-2.0"
Expand All @@ -29,11 +29,10 @@ tagptr = "0.2"

# Opt-out serde and stable_deref_trait features
# https://github.com/Manishearth/triomphe/pull/5
# 0.1.12 requires Rust 1.76
triomphe = { version = ">=0.1.3, <0.1.12", default-features = false }
triomphe = { version = "0.1.13", default-features = false }

# Optional dependencies (enabled by default)
dashmap = { version = "5.2", optional = true }
dashmap = { version = "6.1", optional = true }

[dev-dependencies]
anyhow = "1.0.19"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ Mini Moka's minimum supported Rust versions (MSRV) are the followings:

| Feature | MSRV |
|:-----------------|:--------------------------:|
| default features | Rust 1.61.0 (May 19, 2022) |
| default features | Rust 1.76.0 (Feb 8, 2024) |

It will keep a rolling MSRV policy of at least 6 months. If only the default features
are enabled, MSRV will be updated conservatively. When using other features, MSRV
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
//!
//! | Feature | MSRV |
//! |:-----------------|:--------------------------:|
//! | default features | Rust 1.61.0 (May 19, 2022) |
//! | default features | Rust 1.76.0 (Feb 8, 2024) |
//!
//! If only the default features are enabled, MSRV will be updated conservatively.
//! When using other features, MSRV might be updated more frequently, up to the
Expand Down
4 changes: 2 additions & 2 deletions src/sync/base_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ enum AdmissionResult<K> {

type CacheStore<K, V, S> = dashmap::DashMap<Arc<K>, TrioArc<ValueEntry<K, V>>, S>;

type CacheEntryRef<'a, K, V, S> = DashMapRef<'a, Arc<K>, TrioArc<ValueEntry<K, V>>, S>;
type CacheEntryRef<'a, K, V> = DashMapRef<'a, Arc<K>, TrioArc<ValueEntry<K, V>>>;

// Define a type alias to avoid clippy::type_complexity warnings.
type RemovedEntry<K, V> = (Arc<K>, TrioArc<ValueEntry<K, V>>);
Expand Down Expand Up @@ -583,7 +583,7 @@ where
}

#[inline]
fn get<Q>(&self, key: &Q) -> Option<CacheEntryRef<'_, K, V, S>>
fn get<Q>(&self, key: &Q) -> Option<CacheEntryRef<'_, K, V>>
where
Arc<K>: Borrow<Q>,
Q: Hash + Eq + ?Sized,
Expand Down
2 changes: 1 addition & 1 deletion src/sync/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ where
V: 'a,
S: BuildHasher + Clone,
{
type Item = EntryRef<'a, K, V, S>;
type Item = EntryRef<'a, K, V>;

type IntoIter = Iter<'a, K, V, S>;

Expand Down
2 changes: 1 addition & 1 deletion src/sync/iter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ where
K: Eq + Hash,
S: BuildHasher + Clone,
{
type Item = EntryRef<'a, K, V, S>;
type Item = EntryRef<'a, K, V>;

fn next(&mut self) -> Option<Self::Item> {
for map_ref in &mut self.map_iter {
Expand Down
22 changes: 8 additions & 14 deletions src/sync/mapref.rs
Original file line number Diff line number Diff line change
@@ -1,30 +1,25 @@
use crate::common::concurrent::ValueEntry;

use std::{
hash::{BuildHasher, Hash},
sync::Arc,
};
use std::{hash::Hash, sync::Arc};
use triomphe::Arc as TrioArc;

type DashMapRef<'a, K, V, S> =
dashmap::mapref::multiple::RefMulti<'a, Arc<K>, TrioArc<ValueEntry<K, V>>, S>;
type DashMapRef<'a, K, V> =
dashmap::mapref::multiple::RefMulti<'a, Arc<K>, TrioArc<ValueEntry<K, V>>>;

pub struct EntryRef<'a, K, V, S>(DashMapRef<'a, K, V, S>);
pub struct EntryRef<'a, K, V>(DashMapRef<'a, K, V>);

unsafe impl<'a, K, V, S> Sync for EntryRef<'a, K, V, S>
unsafe impl<'a, K, V> Sync for EntryRef<'a, K, V>
where
K: Eq + Hash + Send + Sync,
V: Send + Sync,
S: BuildHasher,
{
}

impl<'a, K, V, S> EntryRef<'a, K, V, S>
impl<'a, K, V> EntryRef<'a, K, V>
where
K: Eq + Hash,
S: BuildHasher + Clone,
{
pub(crate) fn new(map_ref: DashMapRef<'a, K, V, S>) -> Self {
pub(crate) fn new(map_ref: DashMapRef<'a, K, V>) -> Self {
Self(map_ref)
}

Expand All @@ -41,10 +36,9 @@ where
}
}

impl<'a, K, V, S> std::ops::Deref for EntryRef<'a, K, V, S>
impl<'a, K, V> std::ops::Deref for EntryRef<'a, K, V>
where
K: Eq + Hash,
S: BuildHasher + Clone,
{
type Target = V;

Expand Down

0 comments on commit ee2d64f

Please sign in to comment.