Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfex4936 committed Jan 9, 2025
1 parent 9d61a99 commit fea39ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# K-Festia

![image](https://github.com/user-attachments/assets/165854a2-42dc-4839-a415-0a87dc577ce8)
![example_graphql](https://github.com/user-attachments/assets/c48f0087-74fb-443e-82c6-d2d4edf144b0)
![search](https://github.com/user-attachments/assets/f2554a6c-841b-4a0e-be02-12229e02f665)

Expand Down
Binary file modified kfestia.db
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ private Festival translateAndCategorizeFestival(Festival festival) {
return festival;
}


// TODO: Skip festivals that are canceled or postponed (no start_date or end_date)
@SuppressWarnings(value = "UnstableApiUsage")
public List<Festival> processFestivals(List<FestivalDTO> festivalDTOs, LocalDateTime freshnessThreshold) {
if (festivalDTOs.isEmpty()) {
Expand Down Expand Up @@ -148,7 +148,7 @@ public List<Festival> processFestivals(List<FestivalDTO> festivalDTOs, LocalDate
}

// Proceed to translate and categorize festivals
int maxConcurrency = 10;
int maxConcurrency = 5;
ThreadFactory baseFactory = Thread.ofVirtual().factory();
ThreadFactory limitedFactory = new LimitedThreadFactory(baseFactory, maxConcurrency);

Expand Down

0 comments on commit fea39ca

Please sign in to comment.