Product Promotion
0x5a.live
for different kinds of informations and explorations.
GitHub - Ahoo-Wang/Simba: Distributed lock service | 分布式锁服务
Distributed lock service | 分布式锁服务. Contribute to Ahoo-Wang/Simba development by creating an account on GitHub.
Visit SiteGitHub - Ahoo-Wang/Simba: Distributed lock service | 分布式锁服务
Distributed lock service | 分布式锁服务. Contribute to Ahoo-Wang/Simba development by creating an account on GitHub.
Powered by 0x5a.live 💗
Simba(Distributed Mutex)
Introduction
Simba aims to provide easy-to-use and flexible distributed lock services and supports multiple storage implementations: relational databases, Redis, and Zookeeper.
Installation
Gradle
Kotlin DSL
implementation("me.ahoo.simba:simba-spring-boot-starter:${simbaVersion}")
Maven
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>demo</artifactId>
<properties>
<simba.version>simbaVersion</simba.version>
</properties>
<dependencies>
<dependency>
<groupId>me.ahoo.simba</groupId>
<artifactId>simba-spring-boot-starter</artifactId>
<version>${simba.version}</version>
</dependency>
</dependencies>
</project>
application.yaml
simba:
jdbc:
enabled: true
# redis:
# enabled: true
spring:
datasource:
url: jdbc:mysql://localhost:3306/simba_db
username: root
password: root
Optional-1: JdbcMutexContendService
Kotlin DSL
implementation("me.ahoo.simba:simba-jdbc:${simbaVersion}")
create table simba_mutex
(
mutex varchar(66) not null primary key comment 'mutex name',
acquired_at bigint unsigned not null,
ttl_at bigint unsigned not null,
transition_at bigint unsigned not null,
owner_id char(32) not null,
version int unsigned not null
);
Optional-2: RedisMutexContendService
Kotlin DSL
implementation("me.ahoo.simba:simba-redis:${simbaVersion}")
Optional-3: ZookeeperMutexContendService
Kotlin DSL
implementation("me.ahoo.simba:simba-zookeeper:${simbaVersion}")
Examples
Usage
MutexContender
MutexContendService contendService = contendServiceFactory.createMutexContendService(new AbstractMutexContender(mutex) {
@Override
public void onAcquired(MutexState mutexState) {
log.info("onAcquired");
}
@Override
public void onReleased(MutexState mutexState) {
log.info("onReleased");
}
});
contendService.start();
SimbaLocker
try (Locker locker = new SimbaLocker("mutex-locker", this.mutexContendServiceFactory)) {
locker.acquire(Duration.ofSeconds(1));
/**
* doSomething
*/
} catch (Exception e) {
log.error(e.getMessage(), e);
}
Scheduler
public class ExampleScheduler extends AbstractScheduler implements SmartLifecycle {
public ExampleScheduler(MutexContendServiceFactory contendServiceFactory) {
super("example-scheduler", ScheduleConfig.ofDelay(Duration.ofSeconds(0), Duration.ofSeconds(10)), contendServiceFactory);
}
@Override
protected String getWorker() {
return "ExampleScheduler";
}
@Override
protected void work() {
if (log.isInfoEnabled()) {
log.info("do some work!");
}
}
}
Use Cases
Kotlin Resources
are all listed below.
GitHub - BenWoodworth/knbt: Kotlin NBT library for kotlinx.serialization
resource
~/github.com
resource
GitHub - brianmadden/krawler: A web crawling framework written in Kotlin
resource
~/github.com
resource
GitHub - OxygenCobalt/Auxio: A simple, rational music player for android
resource
~/github.com
resource
GitHub - eriksencosta/math-percentage: Percentage calculations made easy
resource
~/github.com
resource
GitHub - ctripcorp/mmkv-kotlin: A Kotlin Multiplatform porting for MMKV.
resource
~/github.com
resource
GitHub - Litote/kmongo: [deprecated] KMongo - a Kotlin toolkit for Mongo
resource
~/github.com
resource
Test-Driven Development Tutorial for Android: Getting Started
resource
~/www.raywenderlich.com
resource
GitHub - jacinpoz/rxaerospike: RxJava2 wrapper for aerospike-client-java
resource
~/github.com
resource
GitHub - pedrovgs/KotlinSnapshot: Snapshot Testing framework for Kotlin.
resource
~/github.com
resource
GitHub - hankdavidson/ktime: kotlin extensions to the java8 time library
resource
~/github.com
resource
GitHub - ziggy42/Blum: A simple android Twitter client written in Kotlin
resource
~/github.com
resource
Made with ❤️
to provide different kinds of informations and resources.