Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mooz/currentia
A data stream management system that aims to realize the concept of "data stream processing with concurrency control"
https://github.com/mooz/currentia
Last synced: about 1 month ago
JSON representation
A data stream management system that aims to realize the concept of "data stream processing with concurrency control"
- Host: GitHub
- URL: https://github.com/mooz/currentia
- Owner: mooz
- Created: 2014-11-20T13:45:33.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-20T13:46:55.000Z (about 10 years ago)
- Last Synced: 2023-04-19T13:57:28.558Z (over 1 year ago)
- Language: C++
- Size: 898 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Currentia
Currentia is a data stream management system (DSMS) that aims to
realize the concept of *data stream processing with concurrency
control*.## Requirements
- C++ compiler that supports C++11 (`g++` or `clang++`)
- lemon (http://www.hwaci.com/sw/lemon/) for parser generation
- re2c (http://re2c.org/) for lexer generation
- gtest (http://code.google.com/p/googletest/) for testing## Installation
### Ubuntu
Install `lemon` and `re2c` commands.
sudo apt-get install lemon re2c
Then, make project.
make configure && make
## References
- Masafumi Oyamada, Hideyuki Kawashima, and Hiroyuki Kitagawa, "Data Stream Processing with Concurrency Control", SIGAPP Appl. Comput. Rev., Vol. 13, No. 2, pp. 54-65, June 2013
- URL: http://dl.acm.org/citation.cfm?id=2505425
- PDF: http://www.sigapp.org/acr/Issues/V13.2/ACR-13-2-2013.pdf
- Masafumi Oyamada, Hideyuki Kawashima, and Hiroyuki Kitagawa, "Continuous Query Processing with Concurrency Control: Reading Updatable Resources Consistently", Proc. 28th ACM Symposium on Applied Computing (SAC 2013), Coimbra, Portugal, pp. 788-794, March 18-22, 2013.
- URL: http://dl.acm.org/citation.cfm?id=2480362.2480514