SShortSingh.
Back to feed

Tencent EdgeOne Makers Expands Beyond Static Hosting With AI and Serverless Tools

0
·1 views

Tencent's EdgeOne Makers, an evolution of EdgeOne Pages, now supports a wide range of web projects including static sites, React and Vue SPAs, full-stack Next.js apps, and AI Agent-based applications. The platform runs on Tencent's global edge network of over 3,200 nodes, enabling faster content delivery through built-in CDN and caching without manual configuration. Developers can deploy via Git integration, CLI, or IDE plugins, and choose between Edge Functions or Cloud Functions — with support for Node.js, Python, and Go — to handle backend logic without managing servers. Additional features include Edge KV storage, Blob Storage, automatic SSL, and custom domain support, making it viable for portfolios, personal projects, and production apps. EdgeOne Makers also offers AI-specific infrastructure such as sandboxes, model gateways, and ready-made templates for OpenAI Agents, Claude, and LangGraph, all available under a permanently free tier with usage limits.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

LLM Lifecycle Explained Through Familiar IT Infrastructure Concepts

A DEV Community post breaks down the large language model (LLM) lifecycle by drawing direct parallels to infrastructure management workflows familiar to sysadmins. Pretraining is likened to consuming a vendor-provided golden OS image, while fine-tuning compares to customizing that image for a specific business unit. The article distinguishes between full-weight retraining (similar to a complete reimage) and lightweight fine-tuning methods that adjust only a fraction of model layers, akin to applying a targeted patch. Deployment considerations, such as GPU memory overhead when switching models, are mapped to virtualization concepts like vMotion migration costs. The piece argues that LLM lifecycle management follows the same disciplined stages — build, customize, configure, test, and maintain — already practiced in traditional infrastructure operations.

0
ProgrammingDEV Community ·

TestNG vs. Custom Excel Allocator: Two Approaches to Parallel Test Execution

A technical guide published on DEV Community outlines two strategies for achieving parallel test execution in automated testing frameworks. The first approach uses TestNG's native parallelization, configured via XML and Maven parameters, allowing CI pipelines to override thread counts dynamically without modifying source files. The second strategy employs a Custom Excel Allocator that uses Java's ExecutorService fixed thread pool to dispatch concurrent test runs based on active rows parsed from Excel sheets. Native TestNG is recommended for lightweight, code-first suites, while the Excel Allocator suits data-driven frameworks requiring fine-grained control over test instances and multi-sheet scheduling. The guide includes a side-by-side comparison of both methods across entry points, thread management, and command execution to help teams select the right approach.

0
ProgrammingDEV Community ·

How CDNs Reduce Latency by Serving Web Content From Servers Near Users

A Content Delivery Network (CDN) is a globally distributed system of servers designed to deliver web content to users from locations geographically closer to them. Without a CDN, every user request — regardless of origin — travels to a single origin server, causing higher latency, heavier server load, and slower performance at scale. CDNs address this by caching static assets like images, CSS, and JavaScript files on edge servers, also known as Points of Presence (PoPs), spread across the world. When a user requests content, the nearest edge server checks its cache; a cache hit returns the content instantly, while a cache miss fetches it from the origin and stores a local copy for future requests. This architecture allows a single origin server to offload millions of repeated requests, making it a critical component in building large-scale, high-performance web systems.

0
ProgrammingDEV Community ·

AWS Adds Native Vector Search to DynamoDB, Eliminating Dual-Database Setup

Amazon Web Services has introduced a SearchVectors API for DynamoDB, allowing developers to store and query vector embeddings directly within their existing database. The update removes the need for separate vector databases like Pinecone or Weaviate, collapsing a common two-database architecture into a single system. The feature supports embedding models from Bedrock, Cohere, and OpenAI, and requires configuring a vector index with dimensions and a distance function. Vector operations are billed separately per GB for writes, reads, and storage, so cost comparisons with existing setups are advised before migration. AWS recommends starting with a proof-of-concept on non-critical workloads before moving production retrieval-augmented generation pipelines to the new setup.