helenus/README.md

183 lines
3.6 KiB
Markdown
Raw Permalink Normal View History

# Helenus
Fast and easy, functional style cutting edge Java 8 Cassandra client for C* 3.x
2015-03-12 08:08:42 +00:00
2015-03-26 06:00:46 +00:00
2015-03-18 03:17:44 +00:00
### Features
* Leverages Java 8 language capabilities to build CQL queries
2015-03-28 03:25:59 +00:00
* Simple function-style stream API
* Reactive asynchronous and synchronous API
2015-06-05 21:21:22 +00:00
* Provides Java mapping for Tables, Tuples, UDTs (User Defined Type), Collections, UDT Collections, Tuple Collections
2015-06-05 21:25:26 +00:00
* Uses lazy mapping in all cases where possible
* Supports Java 8 Futures and Guava ListenableFuture
2015-03-18 03:17:44 +00:00
2015-03-12 08:08:42 +00:00
### Requirements
* JVM 8
* Datastax Driver 3.x
* Cassandra 3.x
* Maven
2015-03-12 08:08:42 +00:00
2015-03-30 19:49:44 +00:00
### Maven
2015-04-28 03:52:55 +00:00
Latest release dependency:
```
<dependencies>
<dependency>
<groupId>net.helenus</groupId>
<artifactId>helenus-core</artifactId>
2015-06-16 22:55:43 +00:00
<version>1.1.0_2.11</version>
2015-04-28 03:52:55 +00:00
</dependency>
</dependencies>
```
2015-03-30 19:49:44 +00:00
2015-06-05 21:33:02 +00:00
### Simple Example
2015-03-24 04:38:53 +00:00
2015-06-05 21:33:02 +00:00
Model definition:
2015-03-24 04:38:53 +00:00
```
@Table
2015-03-24 04:42:56 +00:00
public interface Timeline {
@PartitionKey
2015-03-27 20:12:36 +00:00
UUID userId();
2015-06-05 21:18:50 +00:00
2015-03-24 04:42:56 +00:00
@ClusteringColumn
2015-04-16 23:54:30 +00:00
@Types.Timeuuid
2015-03-27 20:12:36 +00:00
Date timestamp();
2015-06-05 21:18:50 +00:00
2015-03-24 04:42:56 +00:00
@Column
2015-03-27 20:12:36 +00:00
String text();
2015-06-05 21:18:50 +00:00
2015-03-24 04:42:56 +00:00
}
```
Session initialization:
```
HelenusSession session = Helenus.init(getSession()).showCql().add(Timeline.class).autoCreateDrop().get();
Timeline timeline = Helenus.dsl(Timeline.class, session.getMetadata());
2015-03-24 04:42:56 +00:00
```
2015-06-05 21:31:23 +00:00
Select example:
2015-03-24 04:42:56 +00:00
```
2015-03-27 20:12:36 +00:00
session.select(timeline::userId, timeline::timestamp, timeline::text)
.where(timeline::userId, eq(userId))
2015-04-09 21:28:54 +00:00
.orderBy(Query.desc(timeline::timestamp)).limit(5).sync()
2015-03-24 04:42:56 +00:00
.forEach(System.out::println);
```
2015-06-05 21:31:23 +00:00
Insert example:
2015-03-24 04:42:56 +00:00
```
2015-03-27 20:12:36 +00:00
TimelineImpl post = new TimelineImpl();
post.userId=userId;
post.timestamp=new Date(postTime+1000L*i);
post.text="hello";
2015-03-24 04:42:56 +00:00
session.upsert(post).sync();
2015-03-24 04:38:53 +00:00
```
2015-06-05 21:31:23 +00:00
### Model and Repository Example
Account model:
```
@Table
public interface Account {
@PartitionKey
String accountId();
Date createdAt();
String organization();
String team();
String timezone();
Map<String, AccountUser> users();
}
```
2015-06-05 21:33:02 +00:00
AccountUser model:
```
@UDT
public interface AccountUser {
String email();
String firstName();
String lastName();
}
```
2015-06-05 21:31:23 +00:00
Abstract repository:
```
public interface AbstractRepository {
HelenusSession session();
2015-06-05 21:31:23 +00:00
}
```
Account repository:
```
public interface AccountRepository extends AbstractRepository {
static final Account account = Helenus.dsl(Account.class);
2015-06-05 21:31:23 +00:00
static final String DEFAULT_TIMEZONE = "America/Los_Angeles";
default Future<Optional<Account>> findAccount(String accountId) {
2015-06-05 21:31:23 +00:00
return session()
.select(Account.class)
.where(account::accountId, eq(accountId))
.single()
.future();
}
2015-06-05 21:31:23 +00:00
default Future<Fun.Tuple2<ResultSet, String>> createAccount(
String email,
AccountUser user,
String organization,
String team,
String timezone) {
2015-06-05 21:31:23 +00:00
String accountId = AccountId.next();
if (timezone == null || timezone.isEmpty()) {
timezone = DEFAULT_TIMEZONE;
}
2015-06-05 21:31:23 +00:00
return session()
.insert()
.value(account::accountId, accountId)
.value(account::createdAt, new Date())
.value(account::organization, organization)
.value(account::team, team)
.value(account::timezone, timezone)
.value(account::users, ImmutableMap.of(email, user))
.future(accountId);
2015-06-05 21:31:23 +00:00
}
2015-06-05 21:31:23 +00:00
default Future<ResultSet> putAccountUser(String accountId, String email, AccountUser user) {
2015-06-05 21:31:23 +00:00
return session()
.update()
.put(account::users, email.toLowerCase(), user)
.where(account::accountId, eq(accountId))
.future();
2015-06-05 21:31:23 +00:00
}
2015-06-05 21:31:23 +00:00
default Future<ResultSet> removeAccountUser(String accountId, String email) {
2015-06-05 21:31:23 +00:00
return session()
.update()
.put(account::users, email.toLowerCase(), null)
.where(account::accountId, eq(accountId))
.future();
2015-06-05 21:31:23 +00:00
}
2015-06-05 21:31:23 +00:00
default Future<ResultSet> dropAccount(String accountId) {
2015-06-05 21:31:23 +00:00
return session()
.delete()
.where(account::accountId, eq(accountId))
.future();
2015-06-05 21:31:23 +00:00
}
}
```