Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. COThanks for your answer, you raise some interesting ideas. The project already uses a WAMP environment for various other tasks, so I thought I may as well utilise what was already there. Also I had a look at LevelDB and it looks great, but I don't think it's quite right for my needs on this occasion: "It does not have a relational data model, it does not support SQL queries, and it has no support for indexes". I can't help thinking that will cause me more problems. The reason for using the database in the first place was just that I had already set up the infrastructure for the other sync items
      singulars
    2. COYour point about the binary logs is quite alarming though, so I think I will consider moving towards a 'proper' file system - do you think it would be ok to still use the database sync to transfer, before assembling to binary on the other side (and then deleting binary from the database)? Using the database allows me to keep an accurate track of which blocks of data have and haven't been received (there could be a possibility they won't be received in order)
      singulars
    3. CODatabases are very good at storing well-defined relational data. They are awful at storing large amounts of arbitrary binary data. What you might use is a hybrid, a LevelDB data store with an RDBMS index built on top. LevelDB is great at storing enormous amounts of data, and can be replicated using standard tools like `rsync`.
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload