Re: persistence, serialization, history (run-to-run) in small self-contained program

2016-07-15 Thread Jacob Carlborg via Digitalmars-d-learn
On 2016-07-15 04:17, dan wrote: Thanks Jacob! I was unaware of Orange. Available on Dub now as well: https://code.dlang.org/packages/orange -- /Jacob Carlborg

Re: persistence, serialization, history (run-to-run) in small self-contained program

2016-07-14 Thread dan via Digitalmars-d-learn
On Thursday, 14 July 2016 at 08:28:56 UTC, Jacob Carlborg wrote: On 2016-07-14 07:18, dan wrote: I'm writing a small program (compiled with gdc on xubuntu 16.04). I would like it to remember a little data (a few kilobytes maybe). . My main concern is minimizing program complexity.

Re: persistence, serialization, history (run-to-run) in small self-contained program

2016-07-14 Thread Jacob Carlborg via Digitalmars-d-learn
On 2016-07-14 07:18, dan wrote: I'm writing a small program (compiled with gdc on xubuntu 16.04). I would like it to remember a little data (a few kilobytes maybe). It looks like d comes with standard support for both sqlite3 and json --- is there any particular reason to prefer one over the

Re: persistence, serialization, history (run-to-run) in small self-contained program

2016-07-13 Thread rikki cattermole via Digitalmars-d-learn
On 14/07/2016 5:18 PM, dan wrote: I'm writing a small program (compiled with gdc on xubuntu 16.04). I would like it to remember a little data (a few kilobytes maybe). It looks like d comes with standard support for both sqlite3 and json --- is there any particular reason to prefer one over the