ranking

AppWizard
July 24, 2026
Meccha Chameleon achieved the second-highest revenue for PC titles in June, selling over 15 million copies since its launch on June 10. It debuted at No. 6 on Newzoo's PC engagement charts. Other notable sales figures include Lethal Company with over 10 million units in its first six months and Fall Guys reaching seven million in one month. In life simulation games, Paralives ranked No. 7, while Dead by Daylight climbed to No. 10. Grand Theft Auto 6 became the highest-grossing console title based on pre-orders, generating an estimated 0 million globally. The engagement rankings showed minimal fluctuations, with established titles like Fortnite and Counter-Strike 2 maintaining larger player bases than recent releases. Grounded climbed over 250 places to No. 16 on the console engagement charts after its PlayStation Plus release. The Top 20 PC games by revenue in June included Fortnite, Meccha Chameleon, and Counter-Strike 2 & Go, while the Top 20 console games featured Fortnite, EA Sports FC 26, and NBA 2K26.
AppWizard
July 24, 2026
The European Commission has fined Google €890 million under the Digital Markets Act, with €460 million for allegedly favoring its own services in search results and €430 million for restricting developers in the Google Play ecosystem. Google must revise its Search ranking algorithms and Play Store policies within 60 days to avoid further fines based on global revenue. The company is expected to appeal the decision and discuss compliance strategies with regulators.
AppWizard
July 16, 2026
Grand Theft Auto 6's anticipated release has influenced the gaming industry, prompting publishers and developers to adjust their release strategies. Call of Duty's upcoming Modern Warfare 4 is set to launch in late October, moving away from its usual November release to avoid competition with GTA 6. Mark Grigsby from Infinity Ward stated that the team is focused on delivering a quality experience rather than feeling pressured by GTA 6. Game journalist Morgan Park, after experiencing Modern Warfare 4's multiplayer, expressed optimism about its gameplay, noting improvements over Modern Warfare 2. The competition between these titles is expected to impact the gaming industry's future.
Tech Optimizer
July 16, 2026
Google Cloud has enhanced AlloyDB by integrating AlloyDB AI Functions with Gemini models to improve search indexing for logographic languages like Chinese, Japanese, and Korean. This update addresses challenges in database search functionality, particularly for languages written in continuous scripts, where traditional PostgreSQL text parsing struggles. Developers can now invoke Gemini models directly from SQL to facilitate word segmentation and stop-word removal before creating full-text indexes, offering a more efficient alternative to traditional methods. The architecture maintains raw text, segmented text, search vectors, and embeddings in a single table, with generated columns ensuring automatic updates to search vectors and embeddings. A batching process using a PL/pgSQL stored procedure allows for efficient processing of extensive document collections by aggregating rows into arrays for model requests, thus reducing row-locking issues. Google Cloud provides tailored text search configurations for different datasets, suggesting a simple configuration for solely Chinese text and an English configuration for bilingual datasets. This preprocessing logic can also be applied during query execution, allowing user searches to be directed to Gemini for text segmentation and stop-word elimination. AlloyDB supports RUM indexes on search vectors, which store lexeme positions for computing relevance and word distance, enabling rapid query responses. Additionally, a hybrid search methodology combines full-text and vector search using a ScaNN index on embeddings, merging results through Reciprocal Rank Fusion. This development allows for robust multilingual search and vector retrieval solutions within the database environment, eliminating the need for external microservices.
Winsage
July 14, 2026
Windows 11 users have expressed frustrations with the operating system's search function, which has been cluttered and confusing. Microsoft is implementing a comprehensive overhaul to improve the search experience, currently rolling out to Windows Insiders in the Experimental channel. Key enhancements include the removal of promotional content from web results, prioritization of local results, and the introduction of a setting to disable web and Microsoft Store suggestions. Local content will be ranked higher in search results, and the search function will better tolerate typographical errors. Additionally, file searches will support two-character queries, and results will clearly indicate their sources. These changes are being tested first and will not be immediately available to all Windows 11 PCs.
Winsage
July 14, 2026
Windows Insiders in the Experimental channel are beginning to receive phased enhancements to the Windows Search Box. Key improvements include a streamlined home screen to reduce visual clutter, clearer context for search results indicating their source (app, setting, file, web result, or Store suggestion), and the removal of promotional content from web results. Users can control the display of web and Microsoft Store results through a new setting. Local results are prioritized when relevant, and the search function has improved its handling of typos and partial words. Ranking enhancements for settings results and better file search capabilities have been implemented, along with increased reliability and reduced crashes. Feedback is encouraged through the Feedback Hub.
Tech Optimizer
July 12, 2026
Running pgvector on Amazon Aurora PostgreSQL-Compatible Edition offers a vector store with operational capabilities, high availability, and scalability. It is favored for Retrieval Augmented Generation (RAG) workloads transitioning to production, but increased traffic introduces challenges like query latency and memory management. Key operational practices for pgvector workloads include selecting the appropriate index type (HNSW or IVFFlat), establishing a baseline schema, choosing a suitable distance operator, scaling the index through quantization and partitioning, and preparing for churn and observability. The prerequisites for using pgvector include an Aurora PostgreSQL-Compatible cluster with specific PostgreSQL versions and the vector extension enabled. The embedding model used in examples is Amazon Titan Text Embeddings V2, which produces 1024-dimensional embeddings. pgvector supports two Approximate Nearest Neighbor (ANN) index types: HNSW, which is efficient for querying and allows for incremental insertions, and IVFFlat, which is less resource-intensive but requires rebuilding if data changes. There are scenarios where forgoing an index is beneficial, such as small datasets or partitioned datasets requiring 100% recall. A baseline schema for a multi-tenant document store includes creating a table for documents with an embedding vector and establishing indexes for tenant IDs and embeddings using HNSW. The recommended parameters for HNSW include m = 16 and ef_construction = 128. Scaling to millions of vectors involves quantization, tuning HNSW parameters, and partitioning. Aurora Optimized Reads can extend effective cache capacity, and managing index churn is crucial for maintaining performance. Observability metrics include query-level statistics, instance-level metrics, and custom application-defined metrics. To clean up after testing, it is advisable to drop the created indexes and tables, and delete the Aurora PostgreSQL-Compatible cluster and any manual snapshots taken during testing.
Search