Js5File Group Response
class Js5FileGroupResponse(val file: RandomAccessFile, val offset: Int, val limit: Int) : Js5GroupResponse.Js5GroupResponseType
A prepared JS5 file-based group response. This response will make use of Netty's FileRegion implementation, allowing for zero-copy responses. This implementation is ideal for development purposes, as it avoids needing to load up the entire JS5 cache into memory. It is however not the best for production, as it is heavily bottlenecked by disk seek and read speeds. In-memory implementations will likely outperform, even if they do need to perform a copy. Furthermore, this implementation is not supported with IOUring sockets, nor does it support XOR encryption.