emptygif
ಭಾಷೆ: ಕನ್ನಡ

ಎಲ್ಲಾ ಭಾಷೆಗಳು ಮತ್ತು ಫ್ರೇಮ್‌ವರ್ಕ್‌ಗಳು

ntex Rust

/pixel.gif ಗೆ ಬರುವ ವಿನಂತಿಗಳಿಗೆ ಖಾಲಿ GIF ನೊಂದಿಗೆ ಉತ್ತರಿಸುವ, ntex ಗಾಗಿ ಒಂದು Rust ಸ್ನಿಪೆಟ್; GIF ಅನ್ನು ಆರಂಭದಲ್ಲಿ ಒಮ್ಮೆ ಮಾತ್ರ ಡಿಕೋಡ್ ಮಾಡಲಾಗುತ್ತದೆ.

ntex Rust

ಇನ್‌ಸ್ಟಾಲ್
cargo add ntex --features tokio
ಫೈಲ್
src/main.rs
ರನ್
cargo run --release
use ntex::http::header;
use ntex::web;

const GIF: &[u8] = &[0x47, 0x49, 0x46, 0x38, 0x39, 0x61, 0x01, 0x00, 0x01, 0x00, 0x80, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x21, 0xf9, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x02, 0x02, 0x44, 0x01, 0x00, 0x3b];

#[web::get("/pixel.gif")]
async fn pixel() -> web::HttpResponse {
    web::HttpResponse::Ok()
        .content_type("image/gif")
        .header(header::CACHE_CONTROL, "no-store")
        .body(GIF)
}

#[ntex::main]
async fn main() -> std::io::Result<()> {
    web::HttpServer::new(async || web::App::new().service(pixel))
        .bind(("0.0.0.0", 8080))?
        .run()
        .await
}

ನಾವು ಈ ಸ್ನಿಪೆಟ್ ಅನ್ನು ರನ್ ಮಾಡಿ, ಅದು ಹಿಂತಿರುಗಿಸಿದ ಬೈಟ್‌ಗಳನ್ನು ಹೋಲಿಸಿದ್ದೇವೆ.

ಪರಿಶೀಲಿಸಿ

curl -sI http://localhost:8080/pixel.gif

ಅಧಿಕೃತ ಸೈಟ್: ntex

Rust ನಲ್ಲಿ ಇನ್ನಷ್ಟು