Giter VIP home page Giter VIP logo

Comments (14)

djc avatar djc commented on May 30, 2024 3

I've got an initial attempt in #37 that's most of the way there.

from bb8.

khuey avatar khuey commented on May 30, 2024 2

Alright, I'll take a look at where things stand but that's unlikely to happen before Sunday at the earliest.

I don't think futures 0.1->0.3 is going to be that painful.

from bb8.

ohmyarch avatar ohmyarch commented on May 30, 2024

https://github.com/sfackler/rust-postgres/tree/std-futures/tokio-postgres

from bb8.

pimeys avatar pimeys commented on May 30, 2024

Could we also change the interface a bit to the direction of how r2d2 works, could it be possible now with std::future, async/await and Pin?

So we could be able to use it in a more synchronous-looking manner:

impl AsyncConnector for MyTestPostgresConnector {
    fn run(&self, query: String) -> FutureObj<'static, crate::Result<serde_json::Value>> {
	let fut = async move {
            let mut client = self.pool.get().await?;
            let stmt = client.prepare(query.as_str()).await?;
            let rows = client.query(&stmt, &[]).collect().await?;

            Ok(rows.into_json()?)
        };

        FutureObj::new(Box::new(fut))
    }
}

from bb8.

githubaccount624 avatar githubaccount624 commented on May 30, 2024

Any updates for this? In my app server grabbing the connection each request adds a lot of overhead. I'd like to use this with Rocket, but currently they're incompatible because async Rocket is already on std::future.

from bb8.

khuey avatar khuey commented on May 30, 2024

Not really much we can do here until tokio-postgres at least supports these things, since we're heavily dependent on it.

from bb8.

githubaccount624 avatar githubaccount624 commented on May 30, 2024

What is tokio-postgres still missing? I've been using its std-futures branch without any real issues for a couple weeks now.

from bb8.

khuey avatar khuey commented on May 30, 2024

Maybe it's not missing anything in git, I haven't looked in a while. tokio-postgres doesn't really do releases unfortunately so it's hard to know when it's reached usable points.

from bb8.

githubaccount624 avatar githubaccount624 commented on May 30, 2024

Ah okay. Well I can give a bit of an endorsement here I think. I've been using the Rocket futures branch and the tokio-postgres futures branch in my project for the past month or so and haven't run into any issues yet.

I was talking to the Rocket developers just now and they're interested in using bb8 to implement an async connection pool for postgres in Rocket, but were just waiting on this crate to also update to std-futures. What do you think? :D

Unfortunately I have no idea what the effort required is to update from futures 0.1 to 0.3 since I'm still a Rust noob. Is it very hard?

from bb8.

githubaccount624 avatar githubaccount624 commented on May 30, 2024

What! That's amazing news! Thanks so much!

from bb8.

githubaccount624 avatar githubaccount624 commented on May 30, 2024

Hi @khuey I was wondering if you ever got a chance to check out tokio-postgres's futures branch and if it could work with bb8.

from bb8.

ohmyarch avatar ohmyarch commented on May 30, 2024

tokio-postgres v0.5.0-alpha.1 which uses std::futures::Future and async/await syntax is out.

from bb8.

ohmyarch avatar ohmyarch commented on May 30, 2024

async/await syntax stabilized in 1.39.

from bb8.

djc avatar djc commented on May 30, 2024

This is done.

from bb8.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.