Haskell XMLRPC 服务器执行动态生成的函数
我有一个 Haskell RPCXML (HaXR) 服务器进程,使用 GHC 运行,需要执行它传递的任何函数。这些函数都将在运行时定义,因此编译的服务器不会知道它们。
有没有办法在运行时加载函数定义?避免磁盘 IO 的方法是更好的选择。
谢谢。
I have a Haskell RPCXML (HaXR) server process, run with GHC, that needs to execute any function that it's passed. These functions will all be defined at runtime so the compiled server won't know about them.
Is there a way to load a function definition at runtime? A method that avoids disk IO is preferable.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
hint 最近似乎很流行。
尽管要加载函数定义,我认为您要么必须将其放入模块中,要么每次使用时重新解释它。
hint seems to be popular these days.
Although to load a function definition I think you will either have to put it into a module, or re-interpret it every time you use it.