-
Notifications
You must be signed in to change notification settings - Fork 336
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The database API is huge, messy and inconsistent #338
Labels
Milestone
Comments
This issue was moved to bitshares/bitshares-core#95 |
pmconrad
added a commit
to pmconrad/graphene
that referenced
this issue
Jul 29, 2017
pmconrad
added a commit
to pmconrad/graphene
that referenced
this issue
Dec 22, 2017
pmconrad
pushed a commit
to pmconrad/graphene
that referenced
this issue
Jan 11, 2018
Unit test for issue cryptonomex#338
pmconrad
pushed a commit
to pmconrad/graphene
that referenced
this issue
Apr 17, 2018
pmconrad
pushed a commit
to pmconrad/graphene
that referenced
this issue
Apr 17, 2018
For: * cryptonomex#338 Margin call order fills at price of matching limit_order * cryptonomex#343 Inconsistent sorting of call orders between matching against a limit order and a force settle order * cryptonomex#453 Multiple limit order and call order matching issue * cryptonomex#606 Undercollateralized short positions should be called regardless of asks
pmconrad
pushed a commit
to pmconrad/graphene
that referenced
this issue
Apr 17, 2018
pmconrad
pushed a commit
to pmconrad/graphene
that referenced
this issue
Apr 17, 2018
pmconrad
pushed a commit
to pmconrad/graphene
that referenced
this issue
Apr 17, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problems in the database API:
Accounts have different functions (1)-(2) to get accounts.
Assets have a single function (3) which accepts symbols or stringified ID's.
Accounts have a function (4) to get a single account by name, everything else uses vectors.
get_full_accounts (5) gets the account object and associated objects, nothing else has anything similar. It would
be useful to have other queries which fetch an object and all related objects, e.g. given a BitAsset,
fetch the asset object, BitAsset data structure, and the asset object for the base asset.
Methods (6), (7), and (8) do the same thing but have different names.
Methods (9), (10), and (11) have no way to request later pages. Furthermore, on reading the code,
the limits are not enforced by some of these methods.
Maximum number of things to query should be consistent and enforced. We
may want to provide local wrappers for methods which return iterators, possibly
with latency hiding (e.g. instead of having it block for the whole round trip
when you reach the end of the iterator, instead have it send off the request
for the next page when the iterator reaches the halfway point of the current
page).
The database API needs to be refactored, broken apart into multiple simpler API's. The sections in
database_api.hpp
could conceivably be separately implemented (although we need some kind of union API to make them all accessible to clients under API ID 0).The text was updated successfully, but these errors were encountered: