Security researchers have identified a high-severity vulnerability in WordPress that carries a CVSS score of 9.2 out of 10, indicating it can be exploited with relatively low complexity and minimal attacker privileges. The flaw has reportedly existed in every version of the platform released since 2016, meaning it has gone undetected or unpatched for nearly a decade.
github.com
· 2026-09-22
Manticore Search now supports built-in chunking for embedding-based vector search, letting users add a chunk_strategy option directly to a table's vector column instead of manually splitting long documents before indexing. The database can split text into pieces, embed each chunk, and search across all of them within a single table, eliminating the need for a separate chunking pipeline or secondary table. Five strategies are offered: truncate, mean, fixed, recursive, and sentence, with the latter three requiring a float_vector_array column to store multiple vectors per document.
manticoresearch.com
· 2026-09-17
Antfly, a startup building a document, full-text, vector and graph indexing database, has released version 0.2 of its engine rewritten entirely in Zig with no external dependencies controlling core logic. The original v0.1 engine was built in Go, chosen for its concurrency support and mature Raft implementation, but the team decided to rewrite the system early rather than iterate on it.
antfly.io
· 2026-09-15
JDK 27, the reference implementation of Java 27, has reached General Availability after build 35 passed as the second release candidate with no critical bugs found. The release bundles nine JDK Enhancement Proposals, including G1 as the default garbage collector everywhere, post-quantum hybrid key exchange for TLS 1.3, compact object headers by default, and further previews of structured concurrency and pattern matching features. Oracle's GPL-licensed OpenJDK builds are already available for download, with other vendors expected to follow.
mail.openjdk.org
· 2026-09-15
IEEE Computer Society published an interview with database expert Vinodkrishna Gopalan on how relational databases must evolve to handle AI and machine learning demands. The discussion centers on how AI workloads—marked by large scans, unpredictable queries, vector search, and low-latency inference—differ from traditional transactional database use cases, requiring new approaches to schema design, indexing, and scaling.
wpcms.computer.org
· 2026-09-04
C++26 introduces the concept of a hardened implementation for the standard library, where operations like std::vector's operator[] that previously caused undefined behavior on invalid access now trigger a defined contract violation instead—if the implementation enables hardening. The standard leaves it up to each implementation to decide whether and how this hardened mode is turned on.
cppstories.com
· 2026-08-31
A go-to-market consultant who has worked with over 100 startups—including Temporal, Netlify, Pinecone, and Pydantic—argues that founders routinely fail to communicate in terms customers actually care about. The core prescription is deceptively simple: instead of pitching your product's features or vision, describe it using the language and priorities of the people you're trying to reach.
gkogan.co
· 2026-08-26
A technical guide argues that most retrieval-augmented generation (RAG) implementations are over-engineered, with teams reaching for embeddings, vector databases and reranking before checking if simpler tools suffice. It lays out decision factors—data freshness, corpus size and churn, query patterns, scale and team ML skill—to determine which retrieval approach fits, starting with plain full-text search like BM25, Elasticsearch or Postgres search before adding complexity.
lighthousenewsletter.com
· 2026-08-26
LatticeDB is a new single-file, embedded property-graph database that supports graph traversal, HNSW-based vector similarity search, and BM25 full-text search through one unified query language. It requires no server or configuration, targets single-machine relationship-heavy workloads, and shares its transaction log across graph writes and event streams for durability.
github.com
· 2026-08-25