IoT Full-Stack Technology
Author

IoT Full-Stack Technology

Dedicated to sharing IoT cloud services, embedded systems, and mobile client technology, with no spam ads.

87
Articles
0
Likes
552
Views
0
Comments
Recent Articles

Latest from IoT Full-Stack Technology

87 recent articles
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 5, 2026 · Cloud Native

Implementing Gray Release in Spring Cloud Using Nacos and Load Balancer

This article explains how to build a full‑link gray (canary) release for a Spring Cloud microservice system by leveraging Nacos as the service registry, Spring Cloud Gateway filters, a custom Ribbon load‑balancer, and OpenFeign interceptors, complete with demo project structure, configuration files, and three test scenarios.

Load BalancerNacosOpenFeign
0 likes · 22 min read
Implementing Gray Release in Spring Cloud Using Nacos and Load Balancer
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 5, 2026 · Industry Insights

Can Rust Replace C in Embedded Firmware? An Industrial Study from ST and Academia

A ten‑week side‑by‑side study by ST, Inria and university researchers shows that Rust firmware for an STM32U585 microcontroller uses 45 % less RAM than an equivalent C implementation while matching performance, highlighting Rust's zero‑heap model, portability advantages and the remaining limitations for low‑end MCUs.

Ariel OSC++Embedded Firmware
0 likes · 12 min read
Can Rust Replace C in Embedded Firmware? An Industrial Study from ST and Academia
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 4, 2026 · Artificial Intelligence

Write Code in IDEA with Codex—Zero Manual Typing Required

The article reviews OpenAI's Codex extension for JetBrains IDEs, detailing its easy setup, GPT‑5.4 performance on SWE‑Bench, hands‑free project cloning, automatic environment provisioning, global refactoring, test generation, and real‑world usage examples that demonstrate its near‑professional coding capabilities.

AI coding assistantCodexGPT-5.4
0 likes · 6 min read
Write Code in IDEA with Codex—Zero Manual Typing Required
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 3, 2026 · Backend Development

Can We Achieve Seamless Account Interoperability Across Multiple Company Systems?

The article examines the challenges of multiple corporate systems requiring separate logins, explains traditional session mechanisms and their limitations in clustered environments, compares session replication versus centralized storage, and presents a complete Java Spring implementation of CAS‑based single sign‑on with code samples and a discussion of differences from OAuth2.

AuthenticationCASJava
0 likes · 13 min read
Can We Achieve Seamless Account Interoperability Across Multiple Company Systems?
IoT Full-Stack Technology
IoT Full-Stack Technology
May 29, 2026 · Backend Development

How We Cut a 30‑Second API Call to Under 1 Second on 2 Million Records

In a high‑concurrency transaction system, the author diagnosed a 30‑second API latency caused by costly SQL scans and Java Map creation on over two million rows, then applied SQL aggregation, moved counting logic into PostgreSQL, and introduced a Caffeine cache, ultimately reducing the response time to under 0.8 seconds while highlighting relational‑database limits for massive data.

Caffeine cacheJavaMyBatis
0 likes · 10 min read
How We Cut a 30‑Second API Call to Under 1 Second on 2 Million Records