chg: [Overview] add doc

pull/300/head
Terrtia 2018-11-20 14:39:45 +01:00
parent 108fdb868e
commit 4e680aabf0
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
2 changed files with 25 additions and 17 deletions

View File

@ -58,10 +58,18 @@ ARDB_DB
* DB 5 - TermCred
* DB 6 - Tags
* DB 7 - Metadata
* DB 8 - Statistics
----------------------------------------------------------------------------------------
SET - tag paste*
----------------------------------------------------------------------------------------
* DB 7 - Metadata:
----------------------------------------------------------------------------------------
SET - 'tag:' + paste tag
----------------------------------------------------------------------------------------
----------------------------------------- BASE64 ----------------------------------------
HSET - 'metadata_hash:'+hash 'saved_path' saved_path
@ -99,3 +107,9 @@ ARDB_DB
GET - 'base64_decoded:'+date nd_decoded
GET - 'binary_decoded:'+date nd_decoded
* DB 8 - Statistics
* DB 9 - Onion:
----------------------------------------------------------------------------------------

View File

@ -45,13 +45,7 @@ cfg = configparser.ConfigParser()
cfg.read(configfile)
sentiment_lexicon_file = cfg.get("Directories", "sentiment_lexicon_file")
time_clean_sentiment_db = 60*60
def clean_db()
sevenDays = oneHour*24*7
dateStart = datetime.datetime.now()
dateStart = dateStart.replace(minute=0, second=0, microsecond=0)
dateStart_timestamp = calendar.timegm(dateStart.timetuple())
#time_clean_sentiment_db = 60*60
def Analyse(message, server):
path = message
@ -169,14 +163,14 @@ if __name__ == '__main__':
while True:
message = p.get_from_set()
if message is None:
if int(time.time() - time1) > time_clean_sentiment_db:
clean_db()
time1 = time.time()
continue
else:
publisher.debug("{} queue is empty, waiting".format(config_section))
time.sleep(1)
continue
#if int(time.time() - time1) > time_clean_sentiment_db:
# clean_db()
# time1 = time.time()
# continue
#else:
publisher.debug("{} queue is empty, waiting".format(config_section))
time.sleep(1)
continue
signal.alarm(60)
try:
Analyse(message, server)