Oleksandr Prypkhan

Results 99 comments of Oleksandr Prypkhan

> @oprypkhantc I believe this will only cache the types and not the operation fields. But, the types and compiling those are a large portion of the cycles. As I...

Worked around like so: `!(**/*.md)foo/{a,b}/**`. It's important that the negation always comes first.

> Or the problem is in how laravel uses it 😃 Sure, but I believe they use a string value to support both `phpredis` and the `predis` package without additional...

@Radiergummi What's the point of disabling worker mode locally when xdebug is off? For some applications, the difference is 50ms vs 300ms request times. Sure, we could just specify the...

> Did you notice the same problems on migrated nextra.site website ([docs folder](https://github.com/shuding/nextra/tree/v4-v2/docs))? No, in fact it's as fast as you describe it - hot reload updates take less than...

> Nextra 4 has 2 modes Thank you, that cleared it up for me. > When I add console logs in Nextra's Webpack loader, and make some changes in MDX...

Ha. I found the culprit. It's the `repository.getFileLatestModifiedDateAsync`. No wonder you couldn't reproduce it - our repo has >250k commits, so simply getting a modification date (for an uncommitted file)...

Even with caching, the initial build would still take minutes instead of seconds, due to having to look up each individual file 🤔 Maybe only calculate timestamps for production builds?

> So it will be better for dx to see something on dev, something like `Date.now()` Yes, makes sense. Dev builds will be closer to production, which is always good