walk the tree at request time #8
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: yagich/tickle-godot-frontend#8
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently, the server reads all files in a given directory prior to opening the port, in
_start_server
. It then creates a bound endpoint for each file there. This is good for performance, if this was a production server, but in case of file changes (file added, removed, renamed), changes will not be reflected, and it will lead to unexpected behavior for users.Potential mitigations, in my preferred order:
?
or*
, match it instead of usinghas()
. Potentially also accept regexes (or only regexes?). That means the lookup becomes O(n) instead of O(1) of course.closed by #9