我想用 Suave 构建一个简单的计数器。
[<EntryPoint>]
let main argv =
let mutable counter = 0;
let app =
choose
[
GET
>=> choose
[
path "/" >=> OK "Hello, world. ";
path "/count" >=> OK (string counter)
]
POST
>=> choose
[
path "/increment"
>=> (fun context -> async {
counter <- counter + 1
return Some context
})
]
]
startWebServer defaultConfig app
0
但是,使用我当前的解决方案,计数/count
永远不会更新。
我认为这是因为WebPart
是在启动应用程序时计算的,而不是针对每个请求。
在 Suave 中实现这一目标的最佳方法是什么?