Results 58 comments of Zan Pan

主要是面向企业级应用开发的 是没有几行代码就能完成的hello world 我们最简单的例子应该是它: ```rust use zino::prelude::*; fn main() { zino::Cluster::boot().run() } ```

We support extracting a [SessionId](https://docs.rs/zino-core/latest/zino_core/authentication/struct.SessionId.html) from the `session-id` header. The format is defined in [W3C's Session Identification URI](https://www.w3.org/TR/WD-session-id). We will provide an example for that.

The `SessionId` can be used in the following way: ```rust // 1. Generates an `AccessKeyId`. let key = AccessKeyId::new(); // 2. Generates a `SessionId`. let session_id = SessionId::new::("your.app.com", key); //...

可以关注一下微信公众号(zino-web),通过私信联系 后面会拉一个开发者群,大家一起交流学习 🤝 ![微信公众号](https://user-images.githubusercontent.com/3446306/231044248-8a7edb3b-71f5-41e4-98aa-143920d226fd.png)

你是使用PostgreSQL数据库吗 数据表里是有 lat lng这两个字段是吧

地理信息支持还没怎么考虑 MySQL其实也是支持的 你说的controller写成actions是指啥 模块名称吗 都可以随意起名的 我们没有严格的限制,只要Rust能编译通过就行

It is planned to be added. We need more design choices.

> 代码写的挺不错!正在研读代码中,以后或许我也会参与 欢迎欢迎 🤝

> 希望有机会可以做出贡献 欢迎欢迎 可以关注微信公众号 加一下开发者交流群

We currently support the cron tasks running in the background. It seems that you need a single immediately executed task. We may add this feature in the next release.