-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
daily logtime 을 위한 location 최적화 #388
Comments
logtime 일 단위로 구해주는 함수는 제작했으나, delete -> insert 하는 경우, delete 된 순간 query 가 발생할 가능성이 있는 문제가 있고, |
connection pool size 설정을 통해 부하를 일정 수준으로 유지하도록 했고, 해당 동작에 5초정도 소요되는 상황입니다. |
type DailyLogtimeRecord = {
type: DailyActivityRecordType;
value: number;
} |
#389 와 함께 daily activity 를 구현합니다. type DailyActivity = {
date: Date; // 해당 일의 00시 00분
records: (DailyLogtimeRecord | DailyDefaultRecord)[];
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
time series collection 까진 필요가 없을 것 같고,
별도 date 단위로 합산한 collection + 전용 index 만으로 충분합니다.
time series collection 을 사용하는 경우, logtime 을 추가해주는 부분 구현 난이도가 올라갑니다.
millisecond 로 value 를 저장하고 있기 때문에, month 단위도 충분히 처리할 수 있을 것으로 기대가 됩니다.
The text was updated successfully, but these errors were encountered: