forked from twitter-archive/cassie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathISSUES
20 lines (12 loc) · 762 Bytes
/
ISSUES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Herein are a list of known issues and areas for improvement–
# Mixed Java/Scala data structures
We currently use a mix of java and scala data structures. We should really standardize on one,
then provide wrappers for others. THe plan is to standardize on scala data structures internally and
then provide wrappers for java compatibility/ease-of-use.
# Code duplication
We've duplicated code across ColumFamily, SuperColumFamily, CounterColumFamily and SuperCounterColumFamily.
We need to pull this back together in a more sane way. (also Column and CounterColumn)
# Incomplete Cassandra feature support
Not all cassandra operations are supported (we've taken a JIT approach).
# Iteratee code is fragile and complicated
We should move to Finagle Spools.