### What problem does this PR solve? ### Type of change - [x] Refactoringtags/v0.14.0
| def begin2parse(cls, docid): | def begin2parse(cls, docid): | ||||
| cls.update_by_id( | cls.update_by_id( | ||||
| docid, {"progress": random.random() * 1 / 100., | docid, {"progress": random.random() * 1 / 100., | ||||
| "progress_msg": "Task dispatched...", | |||||
| "progress_msg": "Task is queued...", | |||||
| "process_begin_at": get_format_time() | "process_begin_at": get_format_time() | ||||
| }) | }) | ||||
| F += freq | F += freq | ||||
| L += 0 if len(tk) < 2 else 1 | L += 0 if len(tk) < 2 else 1 | ||||
| tks.append(tk) | tks.append(tk) | ||||
| F /= len(tks) | |||||
| #F /= len(tks) | |||||
| L /= len(tks) | L /= len(tks) | ||||
| logging.debug("[SC] {} {} {} {} {}".format(tks, len(tks), L, F, B / len(tks) + L + F)) | logging.debug("[SC] {} {} {} {} {}".format(tks, len(tks), L, F, B / len(tks) + L + F)) | ||||
| return tks, B / len(tks) + L + F | return tks, B / len(tks) + L + F |