You are viewing a single comment's thread from:

RE: SteemWorld ~ Weekly Support ~ #21

in #steemworld6 years ago (edited)

I'm working with regular relational databases, so of course, you can use SQL for querying the desired data. Since there is only a single process, that needs to write to the DBs at a time, I don't need to run any extra DB services like postgresql, mysql, mongodb or others, which would add an extra layer in between you and the data (always leads to extra performance costs). Many developers don't know that SQLite on SSD outperforms these big names with ease (as long as only one process writes data at a time). But I've planned to implement interfaces to other database systems as well (will come later).

The data service is based on Node.js, therefore it can be started locally or as a public web service without the need of running any additional servers like apache/nginx with php or so. I will also publish a documentation for the web service API. For local analyzing it won't even be needed to use the API, because the DB files are directly accessible and SQL queries can be executed via a direct connection from any app or via ODBC in a local network.

Sort:  

Nice! Thanks for the info and the service, looking forward to it :D