Nathan Harris

Results 56 comments of Nathan Harris

Do you have a snippet of your code that runs into this?

I’m curious to find if it’s an issue with RediStack’s PubSub implementation through the connection pool itself, or Vapor’s support of it

Yes, I'm intimately aware of this. My comment was me thinking out loud to find the issue. I'm strongly suspecting that it's Vapor in the wrong here, I'll dig deeper...

@ericchapman Sorry for the extremely long delay in response - August has been way too busy for me. I left a comment on the PR of where the code can...

One of the things that some custom HTML injection is usually needed for w/ Jazzy is the ability to have several packages with their relationships cross-linked in their documentation. For...

Orthogonally, what I'd love to see is the ability to provide cross-linking / documentation of dependencies, so that our project's documentation feels much more akin to Apple's documentation. When I...

One of options we've been discussing is possible setting a TTL at a fragment level. Doing something so fine-grained as individual properties might get very hairy and not scale that...

Yes, that is adequate and seems to address many cross-cutting concerns. Thanks for keeping up with this request!

@nevinjethmalani With NIO, you can schedule tasks on an `EventLoop` using [`scheduleTask(in:_:)`](https://apple.github.io/swift-nio/docs/current/NIO/Protocols/EventLoop.html#/s:3NIO9EventLoopP12scheduleTaskAA9ScheduledVyqd__GAA10TimeAmountV2in_qd__yKctlF)

@nevinjethmalani In your `boot(_:)` method (using the default structure defined in the [Application docs](https://docs.vapor.codes/3.0/getting-started/application/)), you can use the `eventLoop` property on the `Application` passed to the method to schedule the...