Re: How do I filter out data from mongodb in D-code

2017-10-10 Thread Eduard Staniloiu via Digitalmars-d
On Tuesday, 10 October 2017 at 09:43:10 UTC, Anders S wrote: Hi, I'm working on a middleware application that reads array of data from a POSIX pipe and insert data into the db if any position in the array has changed. This is where my problem lays, in order not to duplicate data I want to

Re: How do I filter out data from mongodb in D-code

2017-10-10 Thread Anders S via Digitalmars-d
On Tuesday, 10 October 2017 at 09:43:10 UTC, Anders S wrote: I'm working on a middleware application that reads array of data from a POSIX pipe and insert data into the db if any position in the array has changed. This is where my problem lays, in order not to duplicate data I want to fetch

How do I filter out data from mongodb in D-code

2017-10-10 Thread Anders S via Digitalmars-d
Hi, I'm working on a middleware application that reads array of data from a POSIX pipe and insert data into the db if any position in the array has changed. This is where my problem lays, in order not to duplicate data I want to fetch the latest data/document in the array of documents. I'm