Conference-Notify is an open source web based application that will aggregate conference information and allow users to search and create recuring reminders and feed for themselves
GNU General Public License v3.0
11
stars
21
forks
source link
[Feat.] insert to mongo db on having greater datestamp for deadline, trigger a rest call for same #15
The Database class currently does not checks for the deadline constraint. It may update the deadline of an mongo document from any of the scrapper plugin , and may lead to inconsistent or old date. Insertion should be avoided in such cases.
REQUIREMENT
Figure out a a way to do the deadline date check.
Achieve this without doing a (search -> bring data to application memory -> insert)
Doing the above will only lead to more latency ( if used locks to preserve critical section ) for single insertion. Bringing in problems such as inconsistent writes when the scrappers are made parallel.
The Database class currently does not checks for the deadline constraint. It may update the deadline of an mongo document from any of the scrapper plugin , and may lead to inconsistent or old date. Insertion should be avoided in such cases.
REQUIREMENT