Timeline for Aggregate data from a huge list under 50ms
Current License: CC BY-SA 4.0
12 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Nov 2, 2022 at 14:48 | comment | added | GreedyHat | One year later but still :) 1) I would try to read not the whole file but line for line. It should reduce iterations and speed up the process. 2) To reduce time on sorting -> i would implement at EventlogRow all needed functions like equals, hash, compareTo and use TreeMap instead of HashMap. TreeMap provides a performance of O(log(n)) for most operations. | |
| Jun 5, 2021 at 7:50 | history | edited | David Meik | CC BY-SA 4.0 |
added 1696 characters in body
|
| Jun 4, 2021 at 13:13 | answer | added | Johnbot | timeline score: 3 | |
| Jun 3, 2021 at 21:00 | history | tweeted | twitter.com/StackCodeReview/status/1400557930068447233 | ||
| Jun 3, 2021 at 12:08 | history | edited | dariosicily | CC BY-SA 4.0 |
edited link to the google document
|
| Jun 3, 2021 at 8:59 | comment | added | David Meik | and yes you are right my code should return the first 10 items of sortedByDescending | |
| Jun 3, 2021 at 8:58 | history | edited | David Meik | CC BY-SA 4.0 |
added 20 characters in body
|
| Jun 3, 2021 at 8:56 | comment | added | David Meik | as far as I understand, this phrase means to aggregate the cases by its id and then find the 10 variants (variant is sequence of events for one case ) thats showed the most | |
| Jun 3, 2021 at 8:45 | comment | added | Flame239 |
Aggregate cases that have the same event execution order and list the 10 variants with the most cases - this phrase is not clear to me. Your method doesn't return anything and prints just duration, what is the purpose of it?
|
|
| Jun 3, 2021 at 8:40 | history | edited | Billal BEGUERADJ | CC BY-SA 4.0 |
removed tags from the title
|
| Jun 3, 2021 at 8:16 | review | First posts | |||
| Jun 3, 2021 at 12:53 | |||||
| Jun 3, 2021 at 8:13 | history | asked | David Meik | CC BY-SA 4.0 |