├── .github └── workflows │ └── github-actions.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── conf ├── sys.config ├── vars_dev1.config ├── vars_dev2.config ├── vars_dev3.config ├── vars_dev4.config └── vm.args ├── gh-md-toc ├── priv └── riak_core.schema ├── rebar.config ├── rebar3 ├── ring.png ├── src ├── rc_example.app.src ├── rc_example.erl ├── rc_example_app.erl ├── rc_example_coverage_fsm.erl ├── rc_example_coverage_fsm_sup.erl ├── rc_example_sup.erl └── rc_example_vnode.erl └── test └── key_value_SUITE.erl /.github/workflows/github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/.github/workflows/github-actions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/README.md -------------------------------------------------------------------------------- /conf/sys.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/conf/sys.config -------------------------------------------------------------------------------- /conf/vars_dev1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/conf/vars_dev1.config -------------------------------------------------------------------------------- /conf/vars_dev2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/conf/vars_dev2.config -------------------------------------------------------------------------------- /conf/vars_dev3.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/conf/vars_dev3.config -------------------------------------------------------------------------------- /conf/vars_dev4.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/conf/vars_dev4.config -------------------------------------------------------------------------------- /conf/vm.args: -------------------------------------------------------------------------------- 1 | -name {{node}} 2 | -------------------------------------------------------------------------------- /gh-md-toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/gh-md-toc -------------------------------------------------------------------------------- /priv/riak_core.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/priv/riak_core.schema -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/rebar3 -------------------------------------------------------------------------------- /ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/ring.png -------------------------------------------------------------------------------- /src/rc_example.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/src/rc_example.app.src -------------------------------------------------------------------------------- /src/rc_example.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/src/rc_example.erl -------------------------------------------------------------------------------- /src/rc_example_app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/src/rc_example_app.erl -------------------------------------------------------------------------------- /src/rc_example_coverage_fsm.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/src/rc_example_coverage_fsm.erl -------------------------------------------------------------------------------- /src/rc_example_coverage_fsm_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/src/rc_example_coverage_fsm_sup.erl -------------------------------------------------------------------------------- /src/rc_example_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/src/rc_example_sup.erl -------------------------------------------------------------------------------- /src/rc_example_vnode.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/src/rc_example_vnode.erl -------------------------------------------------------------------------------- /test/key_value_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambdaclass/riak_core_tutorial/HEAD/test/key_value_SUITE.erl --------------------------------------------------------------------------------