unqlite.rs icon indicating copy to clipboard operation
unqlite.rs copied to clipboard

Roadmap

Open zitsen opened this issue 9 years ago • 0 comments

  • Database Engine Handle
    • [x] unqlite_open
    • [x] unqlite_config
    • [x] unqlite_close
  • Key/Value Store Interfaces
    • [x] unqlite_kv_store
    • [x] unqlite_kv_append
    • [ ] unqlite_kv_store_fmt
    • [ ] unqlite_kv_append_fmt
    • [x] unqlite_kv_fetch
    • [ ] unqlite_kv_fetch_callback
    • [x] unqlite_kv_delete
    • [x] unqlite_kv_config
  • Document Store (JSON via Jx9) Interfaces
    • [ ] unqlite_compile
    • [ ] unqlite_compile_file
    • [ ] unqlite_vm_config
    • [ ] unqlite_vm_exec
    • [ ] unqlite_vm_reset
    • [ ] unqlite_vm_release
    • [ ] unqlite_vm_extract_variable
    • [ ] unqlite_vm_dump
  • Cursor Iterator Interfaces
    • [x] unqlite_kv_cursor_init
    • [x] unqlite_kv_cursor_release
    • [x] unqlite_kv_cursor_seek
    • [x] unqlite_kv_cursor_first_entry
    • [x] unqlite_kv_cursor_last_entry
    • [x] unqlite_kv_cursor_valid_entry
    • [x] unqlite_kv_cursor_next_entry
    • [x] unqlite_kv_cursor_prev_entry
    • [x] unqlite_kv_cursor_key
    • [x] unqlite_kv_cursor_key_callback
    • [x] unqlite_kv_cursor_data
    • [x] unqlite_kv_cursor_data_callback
    • [x] unqlite_kv_cursor_delete_entry
    • [x] unqlite_kv_cursor_reset
  • Manual Transaction Manager
    • [x] unqlite_begin
    • [x] unqlite_commit
    • [x] unqlite_rollback
  • Utility Interfaces
    • [x] unqlite_util_load_mmaped_file
    • [x] unqlite_util_release_mmaped_file
    • [x] unqlite_util_random_string
    • [x] unqlite_util_random_num
  • In-process Extending Interfaces
    • [ ] unqlite_create_function
    • [ ] unqlite_delete_function
    • [ ] unqlite_create_constant
    • [ ] unqlite_delete_constant
  • To be continued

zitsen avatar Mar 04 '16 02:03 zitsen