-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feature]: kyo-offheap in Scala Native #1053
Labels
Comments
/bounty 200 |
💎 $250 bounty • KyoSteps to solve:
Thank you for contributing to getkyo/kyo! Add a bounty • Share on socials
|
/attempt #1053
|
💡 @akhilender-bongirwar submitted a pull request that claims the bounty. You can visit your bounty board to reward. |
/bounty 250 |
fwbrasil
pushed a commit
that referenced
this issue
Mar 6, 2025
Adds a minimal stub implementation for `kyo-offheap` to enable support for Scala Native. - `Arena` class manages off-heap memory allocations with automatic deallocation. - `MemorySegment` class provides basic operations for slicing and accessing primitive values in off-heap memory. This implementation forms the basis for integrating off-heap memory management with Scala Native in the `kyo-offheap` module. #### Related Issue - #1053 /claim #1053 --------- Signed-off-by: Akhilender Bongirwar <[email protected]>
🎉🎈 @akhilender-bongirwar has been awarded $250! 🎈🎊 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem Statement
We introduced the new
kyo-offheap
module for direct memory access but it's available only on the JVM.Proposed Solution
Given that Scala Native offers direct memory access, it seems possible to implement stubs for Java's
MemorySegment
andArena
.Alternative Solutions
No response
Current Workaround
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: