Basic GET/PUT and rolling in Inker

Add support to roll file on PUT in the inker
This commit is contained in:
martinsumner 2016-09-06 17:17:31 +01:00
parent f3a40e106d
commit f0e1c1d7ea
3 changed files with 40 additions and 21 deletions

View file

@ -42,7 +42,7 @@
%% the request to the ledger.
%%
%% The inker will pass the request to the current (append only) CDB journal
%% fileto persist the change. The call should return either 'ok' or 'roll'.
%% file to persist the change. The call should return either 'ok' or 'roll'.
%% 'roll' indicates that the CDB file has insufficient capacity for
%% this write.
@ -59,7 +59,7 @@
%%
%% The Bookie's memory consists of an in-memory ets table. Periodically, the
%% current table is pushed to the Penciller for eventual persistence, and a
%% new tabble is started.
%% new table is started.
%%
%% This completes the non-deferrable work associated with a PUT
%%