odoo / odoo-ls

Odoo Language Server
Other
57 stars 11 forks source link

[IMP] server: speedup exist_cs on windows #88

Closed fda-odoo closed 11 months ago

fda-odoo commented 12 months ago

if the OS is case_preserving, the actual code is using Path.listdir to list list files in a directory. os.scandir is faster, and this commit uses this method instead

fda-odoo commented 12 months ago

To test on windows before merge

fda-odoo commented 11 months ago

Seems around 100% SLOWER. Safe to close without regrets