Evan Almloff

Results 533 comments of Evan Almloff

A guide in the docs or tantivy integration for full text search would both be great additions. You can use [`VectorDB`](https://docs.rs/kalosm/0.3.2/kalosm/language/struct.VectorDB.html#method.add_embedding) to do vector search on top of your database....

It looks like this issue has been fixed in the git version of dioxus after https://github.com/DioxusLabs/dioxus/pull/3552. This code works with the git version of dioxus and the CLI. We also...

I suspect the main cause of this is holding locks over await points. If you don't hold locks over await points and you don't use the `unchecked` read or write...

I haven't seen a viable alternative to signals that solves the same problems. Signals let you rerun only small parts of your application at a time without explicitly listing dependencies....

> ```rust > #[cfg(feature = "web")] > dioxus_web::launch::launch(App, vec![], dioxus_web::Config::new().hydrate(true)); > > #[cfg(feature = "server")] > dioxus::launch(App); > ``` If you are using fullstack, you need to launch fullstack on...

Could you provide a minimal reproduction for this issue? I cannot reproduce it with a simple router example with a server future: ```rust use dioxus::prelude::*; fn main() { LaunchBuilder::fullstack() .with_cfg(server_only!(ServeConfig::builder().incremental(...

> I'm encountering the same problem with my fullstack app using SSR and server functions (alpha.5). But it only happens if I use the new `document::Link` feature to load CSS...

> @ealmloff here are some relevant snippets from my code, which hopefully are enough to build a minimal reproduction. The two main differences I see in that code vs my...

Reproduction with the git latest version of dioxus: ```rust // [dependencies] // axum = { version = "0.7.9", optional = true } // dioxus = { version = "0.6.0-alpha.5", features...

Cargo watch is a different package: https://crates.io/crates/cargo-watch. Now that `dx` supports different platforms we should replace the watch command with `dx serve --platform desktop` which does the same thing without...