Andreas Monitzer
Andreas Monitzer
[Isar FAQ:](https://isar.dev/faq.html) > ## Isar vs Hive > > The answer is easy: Isar was [started as a replacement for Hive](https://github.com/hivedb/hive/issues/246) and is now at a state where I recommend...
What about removing all storage implementations from `hydrated_bloc` itself and just offering different options as separate packages? I don't think that there is a one-size-fits-all approach to this.
My worry is that I don't want to ship the full hive package just for hydrated_bloc. However, maybe I'm just victim to my ignorance whether the tree shaking algorithm is...
 Yes. It seems to work fine after reloading the page, but when you toggle the position it stops working and looks like in the screenshot. The definition is as...
Another solution I tried that didn't work, using the futures 0.3 crate: ```rust pub async fn exec(ctx: BastionContext) -> Result { let (sender, receiver) = futures::channel::oneshot::channel::(); std::thread::spawn(|| { futures::executor::block_on(async move...
This *does* work, kinda: ```rust pub async fn exec(ctx: BastionContext) -> Result { log::debug!("Starting renderer..."); let (sender, mut receiver) = futures::channel::mpsc::unbounded::(); let render_thread = std::thread::spawn(|| { futures::executor::block_on(async move { while...
> Would it be useful to also expose the vk::Queue on the Vulkan hal's `Queue` type? I have looked into that, but I couldn't find a way to access the...
> It's generally considered bad practice for getters to have side effects (like modifying other properties). Well, the code I wrote above is just a minimal example. The reason why...
I'm not aware of ember providing any solution for this, but then again I don't know all of the internal code and the documentation about property caching is rather minimal....