We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support the following 32-bit Linux platforms if possible:
mipsel-unknown-linux-musl
armv5te-unknown-linux-musleabi
Currently Moka will not compile by the following reasons:
std::atomic::AtomicU64
AtomicU64
AtomicI64
atomic::AtomicCell::fetch_add
Probably we will replace all usages of AtomicU64 with RwLock<Option<std::time::Instant>> on these platforms?
RwLock<Option<std::time::Instant>>
The text was updated successfully, but these errors were encountered:
Fixed this via #39.
Sorry, something went wrong.
@messense — Thank you for testing PR #39. I just published Moka v0.5.3 to crate.io.
atomic64
crossbeam::atomic::AtomicCell<u64>
tatsuya6502
No branches or pull requests
Support the following 32-bit Linux platforms if possible:
mipsel-unknown-linux-musl
(for 麻烦编译一个mips版本的 messense/aliyundrive-webdav#22)armv5te-unknown-linux-musleabi
(for 能不能帮忙编译个armv5版本 messense/aliyundrive-webdav#23)Currently Moka will not compile by the following reasons:
std::atomic::AtomicU64
mainly as the expiration clock for entries, butAtomicU64
is not available on mipsel.AtomicU64
orAtomicI64
types" (doc)AtomicU64
is not available on ARMv5TE too.atomic::AtomicCell::fetch_add
method on these platforms: (Does not build on MIPS and ARMv5 metrics-rs/quanta#54)Probably we will replace all usages of
AtomicU64
withRwLock<Option<std::time::Instant>>
on these platforms?The text was updated successfully, but these errors were encountered: