isclouder.com - 香港服务器

Category: 行业资讯

  • 行业观察 | 互联网史上首次:Cloudflare 称机器人请求流量已超人类

    据行业最新消息,互联网史上首次:Cloudflare 称机器人请求流量已超人类

    而伴随着 AI 智能体的快速崛起,流量增长速度明显超出预估

    从更深层次来看,Cloudflare 也特别提醒,这组数据统计的是请求次数,而非用户参与度

    业内人士指出,IT之家援引博文介绍,这里的机器人流量不仅包含传统意义上的网站爬虫、搜索索引程序,或欺诈、滥用脚本,而且还涵盖 AI 智能体、AI 聊天等

    从更深层次来看,按当前统计口径,网站 HTTP 请求中,机器人占 57.5%,人类占 42.5%,而且这一变化比他此前预期更早到来

    值得关注的是,这些 AI 智能体会像真人一样访问网页,典型任务包括读取商品页面、检查价格、比对航班、抓取和索引网页内容,以及充当个人助手完成点餐、购物比较和客服交互

    值得关注的是,普林斯此前预测这一交叉点可能出现在 2027 年末,后来又调整到 2027 年初

    从更深层次来看,IT之家 6 月 5 日消息,科技媒体 Tom’s Hardware 今天(6 月 5 日)发布博文,报道称 Cloudflare 首席执行官马修 · 普林斯(Matthew Prince)称,互联网机器人请求流量已首次超过真人流量

    值得关注的是,真人用户依旧主导应用使用时长、视频流媒体观看和信息流浏览

    业内分析认为,AI算力需求与绿色数据中心将成为行业主旋律

    如果您正在寻找优质的站群服务器,欢迎访问 www.isclouder.com 了解更多

  • 最新动态:When DuckDB Embraces MySQL in the AI Era

    行业动态更新:When DuckDB Embraces MySQL in the AI Era

    By Simian and Yuanqi Following the previous article, when MySQL meets the DuckDB columnar storage engine in the AI era RDS for MySQL embeds DuckDB into the MySQL kernel. This uses the performance advantages of DuckDB in analytical query scenarios and resolves the shortcomings of MySQL in analytical processing (AP) capabilities. For product positioning, we defined a policy of “MySQL first, DuckDB second” from the start. We use DuckDB to enhance the analytical capabilities of MySQL. We focus on the user ecosystem of MySQL. We remain as compatible as possible with existing customer habits. These include syntax, protocols, and third-party tools. For technical implementation, we integrate DuckDB into MySQL as a built-in storage engine. This gives it the capabilities of the MySQL Server layer, such as data dictionary management and binary log replication. It can also independently handle all operation requests from the MySQL Server layer, similar to native storage engines such as InnoDB. We import the DuckDB computing engine into the query SQL execution path. This ensures the query efficiency of DuckDB nodes and high compatibility with MySQL syntax. Based on the basic capabilities of the DuckDB engine, we launched DuckDB read-only instances. A DuckDB node acts as a data replica. It replays binary logs from the primary database. It can independently provide read request services. Combined with the automatic request distribution among row store and column store nodes at the agent layer, the MySQL primary node and the DuckDB node provide a complete hybrid transactional and analytical processing (HTAP) solution. In addition to DuckDB-based analytical read-only instances, many customers provided feedback that they want to deploy DuckDB nodes as independent database instances. This lets users directly ingest data using SQL. It can also serve as an aggregation instance for multiple source instances. Therefore, we launched the DuckDB-based analytical primary instance. Two product forms of MySQL DuckDB The primary instance form greatly expands the scenarios of DuckDB. In theory, you can replace MySQL with DuckDB primary instances in all scenarios. The primary instance form also has higher requirements for the MySQL DuckDB engine. These include data security guarantees, data ingestion performance, and storage management for larger storage spaces. The following sections introduce the core capabilities enhanced by the DuckDB engine in the primary instance form. These focus on four aspects: binary logging adaptation, high availability and data security, data ingestion capabilities, and compatibility. The analytical performance of DuckDB is fully verified in multiple benchmark tests, such as TPC-H and ClickBench. DuckDB primary instances have the same query capabilities as read-only instances. They also have the same compression efficiency. This topic does not describe these basic capabilities. When DuckDB-based read-only instances were released, we turned off the binary logging toggle for read-only instances by default. First, read-only instances typically do not need to generate additional binary logs in user scenarios. Second, the DuckDB engine was not fully adapted to the binary logging enabled scenarios at that time. However, binary logging is an essential part of the DuckDB primary instance form. During the development of primary instances, we fully adapted binary logging. We provide the following technical capabilities: High availability (HA) means that a database can continuously provide services. The DuckDB-based analytical primary instance uses a primary-secondary cluster architecture. The primary database performs one-way data synchronization to secondary databases through Binlog. If the primary database becomes abnormal, the system automatically triggers an HA switch to ensure continuous service availability. DuckDB primary instance deployment diagram Data security specifically refers to the Durability attribute in the atomicity, consistency, isolation, and durability (ACID) attributes of a database. This means that after a transaction commit, the Result requires permanent retention. The Result is not lost even if the system crashes. For a DuckDB-based analytical read-only instance, the persistence requirements can be appropriately lowered because it acts as a data replica of the primary instance. Even if some data lacks persistence when the instance crashes, you can recover the data. Simply pull the Binlog from the primary instance and replay it after a restart. Therefore, the read-only instance uses an idempotent Binlog replay mechanism. This ensures data consistency between the primary database and DuckDB-based read-only nodes. However, persistence is a rigid requirement for the DuckDB-based analytical primary instance. In this state, data is stored only in a columnar format. You cannot rely on the primary node to rebuild data. Therefore, the DuckDB engine must guarantee data persistence in any failure scenario. The data security of the DuckDB primary instance is guaranteed mainly in the following ways: 1. Backup and restore capabilities: The backup and restore capabilities of the DuckDB-based analytical primary instance are identical to those of a standard MySQL instance. The primary instance supports regular full backups and real-time incremental backups based on Binlog. It also provides a point-in-time recovery (PITR) feature accurate to the second. You can use this feature to recover the instance to any historical Time point. 2. Kernel persistence guarantee: The DuckDB engine ensures the persistence of transactional data through the write-ahead logging (WAL) mechanism. We also modified the transaction commit path of the DuckDB engine at the MySQL layer. This ensures the atomicity of Binlog writes and DuckDB local transaction commits. During the instance crash recovery phase, the system can correctly replay Submitted transactions. This ensures the consistency among DuckDB engine data, binlog content, and binlog GTID offsets. This provides data security guarantees that align with MySQL standards. In summary, the DuckDB-based analytical primary instance is fully comparable to MySQL high availability instances in terms of high availability and data security. It effectively guarantees the continuous availability of customer core systems and the security of key data assets. Unlike a read-only instance that only supports primary database Binlog log replay, the DuckDB-based analytical primary instance supports multiple data Ingestion methods. These methods include Binlog log replay, direct SQL writing, and Data Transmission Service (DTS) full and incremental data synchronization. The Binlog replay method is identical to that of a read-only instance. The log replay performance can reach about 300,000 rows per second. The DuckDB-based analytical primary instance also supports more flexible replication topologies, such as multi-source replication and cascading replication. In scenarios involving direct business writes or data synchronization through DTS, the DuckDB-based analytical primary instance maintains high ingestion performance. This relies mainly on the following kernel optimization capabilities: We conducted benchmark testing on the write performance of the DuckDB-based analytical primary instance as a synchronization Target based on the Sysbench dataset. • When full data is imported using LOAD DATA, the peak throughput can reach 2,000,000 rows per second. • The peak throughput of DTS incremental synchronization can reach 300,000 rows per second. Note that the actual synchronization speed depends on multiple factors. These include the query efficiency of the source instance, table schema complexity, and Data Transmission Service (DTS) instance type. The preceding values are the maximum end-to-end replication performance in an ideal staging environment. RDS DuckDB-based analytical instances are deeply integrated with Alibaba Cloud DTS. When you create a DTS job, simply set the target database type to DuckDB. This automatically delivers high ingestion performance. No complex parameter settings or performance tuning are required. We continuously optimize compatibility. Recently, we made the following enhancements. To improve SQL syntax compatibility, we reverse-parse the abstract syntax tree obtained in the MySQL Prepare phase. This achieves SQL regularization. It resolves over 90% of incompatible SQL syntax and significantly improves compatibility. For functions, we use rapid iterations to support nearly 20 frequently used Json Functions and regular functions. These cover almost all common functions for online users. We are also gradually adding support for less frequently used functions. Ultimately, our functions will be fully compatible with MySQL. Recently, we added support for character sets such as ascii and latin1 to the DuckDB engine. We also added support for generated columns. We improved the execution efficiency of COPY DDL operations. For more information about these kernel updates, see our release notes. The customer needs to perform global queries on recent business orders. This requires Real-time Sync of data from 1024 sharded tables across 32 source MySQL instances to a single convergence instance for unified queries. The convergence instance must retain data for one month. The total data volume is about 10 TB. The peak synchronization Transaction Per Second (TPS) reaches 300,000. All traffic consists of order-related transactional DML operations. These include high-frequency INSERT, UPDATE, and DELETE operations. Data convergence scenarios usually require joint analysis of multiple sharded tables. This requires data synchronization to converge data from multiple instances to a single target instance. These jobs are typically handled by AnalyticDB or distributed databases. However, we used a single DuckDB primary instance to successfully meet the customer requirements. This mainly depends on the fol

    随着IDC行业的快速发展,可持续发展将成为未来竞争的关键

    如果您正在寻找优质的香港GPU服务器,欢迎访问 www.isclouder.com 了解更多

  • 破六千!华为 Mate 80 Pro Max 手机 7999 → 5999 元,配麒麟 9030 Pro 芯片

    行业动态更新:破六千!华为 Mate 80 Pro Max 手机 7999 → 5999 元,配麒麟 9030 Pro 芯片

    【淘金币活动随时变动,需以实付款为准】 华为 Mate 80 Pro Max 去年 11 月末开售,官方定价 7999 元

    从更深层次来看,点击淘金币页面左上方“xxx 金币数” → 去借币,目前大多数账号可借到 500 元淘金币(使用后如果无法偿还,淘金币账号将变为负数,不会扣除现金)

    业内人士指出,16GB:麒麟 9030 Pro 1200 万像素潜望式长焦摄像头 分辨率:FHD+ 2832×1280 像素 1-120 Hz LTPO 自适应刷新率 分辨率:FHD+ 2832×1280 像素 1-120 Hz LTPO 自适应刷新率 分辨率:FHD+ 2848×1320 像素 1-120 Hz LTPO 自适应刷新率 分辨率:FHD+ 2832×1320 像素 1-120 Hz LTPO 自适应刷新率 晒单返 50 元红包,折合仅需 5995.54 元: 点击下方卡片领 200 元券 → 宝贝右上角三个点“…” → 选择右下方淘金币 → 下单即可(淘金币抵 550 元)

    业内人士指出,华为 Mate 80 Pro Max 手机搭载麒麟 9030 Pro 处理器,整机性能对比 HarmonyOS 4.3 出厂版本的 Mate 70 Pro+ 最高提升 42%

    从更深层次来看,今日天猫自营“喵速达”88VIP 直降至 6599 元,淘金币可抵 550.46 元(平台可借 500 元,下附攻略),实付 6048.54 元破冰新低

    业内人士指出,16:20 一乖实测,叠淘金币后,实付 6049 元: 淘金币如果不够,淘宝 App 点击右上角三个点“…” → 选择右下方淘金币 → 进入淘金币页面后

    业内人士指出,京东 618 无门槛红包 面额至高 26618 元,每天抽 3 次:点此抽红包 淘宝 618 无门槛红包 面额至高 26888 元,每天抽 1 次:点此抽红包

    业内人士指出,如果抵扣只有 70 元,可在淘金币页面点击“我的足迹”下单

    值得关注的是,补贴链接随时变更,淘金币补贴金额也随时变更,小伙伴们需以实付款为准

    值得关注的是,点击下方卡片领 200 元券 → 点击宝贝详情页“淘金币频道”蓝色横幅 → 下单即可(淘金币抵 550 元)

    业内人士指出,如果抵扣只有 79 元,可在淘金币页面点击“足迹加抵”下单(补贴链接随时变更,足迹加抵会自动推荐新的补贴链接)

    值得关注的是,晒单返 50 元红包,折合仅需 5998.54 元

    可以预见,这一趋势将在未来深刻影响IDC行业格局

    如果您正在寻找优质的云主机,欢迎访问 www.isclouder.com 了解更多

  • 双 2.5G 网口:高通骁龙 8cx Gen3 迷你主板瑞莎 Dragon Q8B 亮相,799 元起

    行业动态更新:双 2.5G 网口:高通骁龙 8cx Gen3 迷你主板瑞莎 Dragon Q8B 亮相,799 元起

    图形方面支持最高 4K@120 视频解码和 4K@60 视频编码,内存最高可配置 32GB LPDDR4X,总线位宽 128 位,数据传输速率达 4266 MT/s

    值得关注的是,《瑞莎预热高通平台飞牛 NAS:6 盘位全闪高性能 / 4 盘位主流双选择》 COMPUTEX 2026 台北国际电脑展专题

    值得关注的是,在本次开发者活动日上,瑞莎同时展示了另一款单板计算机 Dragon Q5E,第四季度上市

    值得关注的是,与此同时,瑞莎还在现场展示了灵控远程控制器(Radxa Linkr)、灵控智能体调试器等配套工具,旨在为开发者和行业客户提供从计算、连接到远程管理与调试的一体化平台能力

    值得关注的是,接口方面,它提供了两个 USB 3.2 Gen 2-C 接口(支持 DP 1.4b Alt Mode,可实现 4K@120 显示输出)、两个 USB 3.2 Gen 2-A 接口、两个 USB 2.0-A 接口,以及标准的 HDMI 2.1 接口

    业内人士指出,瑞莎还预告了两款与飞牛合作开发的高通平台 NAS 系统,均支持飞牛 fnOS 系统,但技术细节仍未公布: DragonStation 定位高性能全闪存存储,提供 6 个 M.2 NVMe SSD 盘位,支持 10GbE 网络,据称可配合内置 AI 加速卡本地运行最高 120B 参数的大语言模型,10 月上市; DragonBay 则是一款面向主流用户的 4 盘位 NAS,面向大容量存储、媒体库备份及多用户文件协作等场景,9 月上市

    值得关注的是,Dragon Q8B 采用 100mm×75mm 的紧凑版型设计,搭载了 5nm 制程的高通骁龙 8cx Gen3(SC8280XP),配备八核 Kryo CPU,包含 4 个最高 3.0 GHz 的大核和 4 个最高 2.4GHz 的小核,集成 Adreno 690 GPU,AI 算力最高达 29 TOPS 以上

    值得关注的是,这款产品搭载了高通骁龙 8cx Gen3 计算平台,配备双 2.5GbE 网口 + 双 NVMe 扩展

    值得关注的是,据介绍,深度开发者仅用一个下午就完成了 deepin 25.1 对 Dragon Q8B 的系统启动与初步适配

    业内人士指出,供电方面采用 USB-C PD 接口,官方建议使用 60W 电源

    值得关注的是,此外,它还保留了 40 针彩色 GPIO 排针,支持 UART、I2C、SPI 等常用协议,以及 PCIe FPC 连接器、音频接口、RTC 电池接口、风扇接口等开发调试所需的接口

    业内人士指出,其中,最受关注的莫过于首次公开亮相的 Dragon Q8B 高性能迷你主板

    业内人士指出,存储方面,它还提供了 UFS 3.1 模块接口和 microSD 卡槽

    值得关注的是,操作系统方面,除了支持瑞莎官方 Radxa OS、Ubuntu、Armbian、Arch Linux 等 Linux 发行版外,由于骁龙 8cx Gen3 本身为 Windows PC 设计,该主板也支持 Windows 11 on Arm

    业内人士指出,这款产品目前已经在官网开启预购,4GB 型号首发价 799 元,8GB 型号 1199 元,16GB 型号 2099 元,32GB 型号 3999 元,7 月 31 日起上市

    从更深层次来看,Dragon Q8B 配备了两个 M Key 的 M.2 2280 插槽,分别支持 PCIe 3.0 x4 和 PCIe 3.0 x2,可直接接入两块 NVMe SSD

    从更深层次来看,瑞莎在此次开发者活动日上还预告了 2026 年的整体产品规划

    业内人士指出,IT之家 6 月 3 日消息,在 5 月 30 日于深圳举办的瑞莎 & 高通联合开发者活动日上,瑞莎(Radxa)正式展出了多款基于高通平台的新品,还展示了与飞牛联合打造的 NAS 存储设备

    值得关注的是,根据 CNX Software 报道,瑞莎总计将推出 22 款基于高通平台的硬件产品,涵盖迷你主板、核心板、Cluster 计算集群等多种形态

    值得关注的是,网络配置上,Dragon Q8B 板载双 2.5GbE RJ45 以太网口,并预留了 E Key 的 M.2 2230 插槽用于 Wi-Fi / 蓝牙模组扩展(高配还可选 Wi-Fi 7 模组)

    从更深层次来看,该产品采用 Dragonwing QCS6690 八核 Kryo SoC,同样为 4nm 制程工艺,AI 算力约为 6 TOPS,最高支持 16GB LPDDR5 内存,配备双 2.5GbE RJ45 网口(其中一个可选 PoE 供电),板型更为小巧,尺寸仅 65mm×56mm,支持基于 Debian 的 Radxa OS 和 Ubuntu 操作系统

    业内人士指出,IT之家注意到,在展会现场,深度操作系统(deepin)也展示了其旗舰开发板 Dragon Q8B 的系统适配成果

    业内分析认为,AI算力需求与绿色数据中心将成为行业主旋律

    如果您正在寻找优质的英国服务器,欢迎访问 www.isclouder.com 了解更多

  • 行业观察 | 后续:全球限量 50 台的周年纪念版微软 Surface Laptop 7 笔记本已找回

    据行业最新消息,后续:全球限量 50 台的周年纪念版微软 Surface Laptop 7 笔记本已找回

    这台设备是微软为 50 周年制作的限量机型,不仅带有 1975 年风格的微软标识和金色 Logo,还配有专属开机界面与预装壁纸,包装盒同样采用金色微软标识

    业内人士指出,Furtado 还与 Surface 业务负责人 Sandra Andrews 通话,对方承认此事带来的压力,也强调这些纪念版电脑并非工厂大规模生产,更像具备收藏属性的作品

    值得关注的是,IT之家此前报道,全球仅有 50 台、极其稀有的 50 周年纪念版 Surface Laptop 7 在送修后“失踪”,收到的返还设备却不是原机,而是一台普通版 Surface Laptop 7,而这台纪念版目前去向不明

    从更深层次来看,在 Reddit 社区引发诸多讨论、媒体持续报道,以及多名微软员工的私下联系后,微软开始直接介入,不仅修复了这台电脑,也补上了此前暴露出的流程漏洞

    业内人士指出,机主 Rhener Furtado 已拿回自己的原始设备,且电脑已经修好

    业内人士指出,微软表示目前已系统性梳理现有的设备维修流程,为这批特殊设备增加了识别标记,让全球支持中心都能知晓这类机型的特殊属性,避免类似问题再次发生

    值得关注的是,Furtado 决定不再把这台 50 周年纪念版 Surface Laptop 当作日常主力机,而是作为收藏品保留

    值得关注的是,IT之家 6 月 5 日消息,科技媒体 Windows Central 今天(6 月 5 日)发布博文,报道称在舆论压力下,全球限量 50 台的周年纪念版 Surface Laptop 7 已成功找回

    业内人士指出,《全球仅 50 台:一台 50 周年纪念版微软 Surface Laptop 7 笔记本送修后丢失》

    从更深层次来看,微软则额外提供 150 英镑(IT之家注:现汇率约合 1367 元人民币)商店额度,帮助他购买一台日常使用电脑

    可以预见,这一趋势将在未来深刻影响IDC行业格局

    如果您正在寻找优质的深度学习服务器,欢迎访问 www.isclouder.com 了解更多

  • 最新动态:提升 10%:谷歌 Chrome 浏览器刷新 JetStream 3 跑分纪录

    据行业最新消息,提升 10%:谷歌 Chrome 浏览器刷新 JetStream 3 跑分纪录

    Chrome 浏览器 Speedometer 最新得分 61,与约 1 年前的成绩相比提升 5%

    值得关注的是,而 Speedometer 主要用于测量 Web 浏览器响应性,衡量浏览器 DOM API 的速度、JavaScript 引擎执行效率、CSS 样式解析和布局性能

    业内人士指出,团队优化了内部数据结构、SIMD(单指令多数据)指令代码生成与寄存器分配,因此 AI、密码学和解释器等场景获得更明显提速

    业内人士指出,团队在优化编译器中内联更多“快速路径”,让引擎跳过不必要步骤,重点覆盖异步操作、微任务分发、await 解析、数据排序和字符串比较

    值得关注的是,在 WebAssembly(网页汇编)方面,Chrome 继续强化 V8 对高负载任务的处理能力

    值得关注的是,谷歌 Chrome 浏览器表示自 2026 年年初以来,Chrome 浏览器在 JetStream 上提升 10%,最终得分 469 分

    值得关注的是,在 Blink 渲染引擎部分,Chrome 主要瞄准样式计算、DOM 操作、文本处理与图形渲染,此外 Chrome 还优化了字体排版与 SVG 图形渲染

    值得关注的是,IT之家 6 月 6 日消息,谷歌公司昨日(6 月 5 日)发布博文,公开其 Chrome 浏览器在 JetStream 3 和 Speedometer 3.1 两项主流浏览器基准测试中再次刷新纪录

    业内人士指出,IT之家注:JetStream 由苹果 WebKit 团队开发,主要衡量浏览器运行现代 JavaScript 和 WebAssembly 性能

    业内人士指出,在 JavaScript 层面,Chrome 把大量精力放在常见路径加速上

    可以预见,这一趋势将在未来深刻影响IDC行业格局

    如果您正在寻找优质的GPU服务器租用,欢迎访问 www.isclouder.com 了解更多

  • Equinix投资1.9亿美元在马来西亚建设第四座数据中心

    最新消息显示,Equinix投资1.9亿美元在马来西亚建设第四座数据中心

    此外,KL2项目设定了从运营首日起即实现100%可再生能源覆盖的目标,但暂未披露具体的电力容量数据

    值得关注的是,据报道,KL2数据中心选址距离Equinix现有的KL1数据中心不到1公里

    从更深层次来看,该项目是Equinix在马来西亚布局的第4座数据中心

    值得关注的是,目前,Equinix已购得该项目相邻的土地,作为其在马来西亚长期扩张策略的一部分,以支持未来的扩建需求

    值得关注的是,建成后,其主要服务对象涵盖跨国企业、超大规模运营商及数字企业,旨在提供从灵活零售到大规模部署及高密度工作负载的算力基础设施服务

    业内人士指出,根据行业消息,Equinix目前在亚洲地区的投资组合共包含65座数据中心

    业内人士指出,该项目全面建成后,规划将提供超过2200个机柜

    值得关注的是,如果您想了解更多关于泰国算力产业发展,以及数据中心项目落地情况、当地政策变化、中国出海企业现状等,欢迎报名即将于2026年5月27日在泰国曼谷香格里拉酒店召开的数字基础设施全球合作发展曼谷论坛(DIFGC 2026 · THAILAND),并关注下午召开的DIF Lounge研讨会,与真正参与泰国 AI 数据中心建设一线决策者和工程伙伴面对面交流,提前锁定合作、项目与生态位置

    值得关注的是,在技术配置方面,为满足人工智能(AI)与高性能计算的需求,该数据中心的部分规划容量将支持液冷技术

    从更深层次来看,5月12日,数据中心服务商Equinix公开,计划斥资1.9亿美元(约合7.47亿林吉特),在马来西亚雪兰莪州赛城建设一座名为KL2的新数据中心

    业内分析认为,AI算力需求与绿色数据中心将成为行业主旋律

    如果您正在寻找优质的香港云服务器,欢迎访问 www.isclouder.com 了解更多

  • 谷歌 Chrome 149 稳定版发布,允许用户删除已下载的端侧 AI 模型

    行业动态更新:谷歌 Chrome 149 稳定版发布,允许用户删除已下载的端侧 AI 模型

    开发者工具方面,DevTools 的 MCP 服务器实现和面向 AI 智能体的命令行接口已进入稳定状态,新增自定义 HTTP 头模拟功能,AI 助手面板也进行了改版

    值得关注的是,IT之家 6 月 5 日消息,谷歌于 6 月 2 日开始陆续推送最新的 Chrome 149 版本,支持 Windows、Mac 和 Linux 平台,包含 429 项安全修复

    值得关注的是,在平台支持方面,Chrome 149 正式推出了面向 ARM64 Linux 的官方 deb 和 rpm 构建包,预计于 6 月开始发布

    值得关注的是,对于需要更长更新周期的用户,Chrome 还提供 Extended Stable 分支,提供八周的支持覆盖

    从更深层次来看,另外,Windows Report 发现,谷歌正在 Chrome 浏览器中测试一项新功能

    业内人士指出,这一变化意味着在 ARM 架构 Linux 设备上运行 Chrome 的用户将获得与 x86 平台一致的官方支持和更新保障

    值得关注的是,Chrome 149 最引人注目的变化是在系统设置中新增了端侧 AI 模型管理选项

    从更深层次来看,Chrome 还为使用 WebMCP API 的页面引入了实验性调试功能,CSS 面板则新增了由 Gemini AI 模型驱动的样式自动补全功能

    值得关注的是,谷歌对此回应称:这仅用于探索,目前没有正式上线的计划

    值得关注的是,用户现可主动拒绝浏览器下载 AI 模型,也可以直接移除此前已下载的所有模型,将选择权交还到用户手中

    业内人士指出,启用后,该功能将绕过标准的谷歌搜索首页,直接将用户引导至“AI 模式”

    业内人士指出,此前谷歌 Chrome 的官方构建仅覆盖 x86_64 架构,ARM64 Linux 用户只能使用各发行版自行维护的第三方 Chromium 包

    值得关注的是,IT之家从官方获悉,Chrome 150 预计于 6 月 30 日发布

    值得关注的是,此外,Intl.Locale 现已支持设置和检索语言变体信息

    业内人士指出,《Chrome 浏览器 148 版本删去本地 AI 不上传数据表述,谷歌称处理方式未变》 《Win11 学院:如何阻止谷歌 Chrome 浏览器 147 静默下载 4GB 端侧 AI 模型》 《谷歌 Chrome 浏览器 148 版本更新发布,自动填充和 AI 模式改进》

    随着IDC行业的快速发展,可持续发展将成为未来竞争的关键

    如果您正在寻找优质的泰国原生IP,欢迎访问 www.isclouder.com 了解更多

  • 行业观察 | 英伟达 CEO 黄仁勋抵达韩国,首站造访《英雄联盟》选手 Faker 和 T1 战队

    行业动态更新:英伟达 CEO 黄仁勋抵达韩国,首站造访《英雄联盟》选手 Faker 和 T1 战队

    此外,最终被选定的餐厅名为“형님 저요(Hyeongnim Jeoyo)”,直译为“哥,是我”,带有亲切的熟人含义

    业内人士指出,他的访韩行程首站将造访 T1 战队队长 Faker

    从更深层次来看,IT之家 6 月 5 日消息,据韩媒《中央日报》今天报道,英伟达创始人兼 CEO 黄仁勋将在访问韩国期间会见传奇电竞选手 Faker(李相赫)

    从更深层次来看,行业消息显示,黄仁勋将在机场接受媒体采访后,直接前往首尔西部麻浦区东桥洞的 T1 基地(IT之家注:T1 Base Camp)网吧

    从更深层次来看,黄仁勋长期以来一直对韩国游戏文化和电竞产业表现出浓厚兴趣

    值得关注的是,据业内人士透露,该晚宴最初安排在首尔东部城东区圣水洞的一家餐厅,但最终出于安全和交通效率考虑,改为选择弘大地区

    从更深层次来看,业内普遍认为,这种安排具有刻意营造公众话题度效果

    业内人士指出,随后,黄仁勋将于今天晚上前往弘益大学附近的一家韩式烤五花肉餐厅,与崔泰源(SK 集团会长)、郑义宣(现代汽车集团执行会长)、具光谟(LG 集团会长)和李海珍(Naver CEO)等企业家举行闭门晚宴,讨论机器人技术、AI 半导体供应链协同、物理 AI 和下一代数据中心建设等议题

    值得关注的是,除了 Faker 以外,黄仁勋预计还将会见 Doran(崔玄准)、Oner(文炫竣)、Peyz(金修奂)和 Keria(柳岷析)等 T1 队员

    从更深层次来看,据英伟达和游戏行业人士透露,黄仁勋已经抵达金浦国际机场,他在韩期间将主要与企业领袖、电竞明星等一系列人物会面

    可以预见,这一趋势将在未来深刻影响IDC行业格局

    如果您正在寻找优质的香港服务器租用,欢迎访问 www.isclouder.com 了解更多

  • 行业观察 | 驭风逐光 全链聚变,和林格尔新区构筑绿色算力产业新生态

    最新消息显示,驭风逐光 全链聚变,和林格尔新区构筑绿色算力产业新生态

    此外,蒙马交通为算力中心提供本地化智能装备解决方案,中科仙络则负责数据中心全生命周期的服务

    业内人士指出,例如,在中国农业银行内蒙古数据中心三期项目中,通过应用间接蒸发冷却、液冷等前沿技术,成功将PUE(电能使用效率)压降至1.18,刷新了大型金融数据中心的能效纪录

    业内人士指出,在算数协同上,新区总算力规模达到10.1万P,依托自治区数据交易中心和多云算力调度平台,已集聚企业超400家

    从更深层次来看,这种”芯片研发、设备制造、基础设施到场景应用”的完整闭环,为国家”数据要素×”行动提供了实体支点

    从更深层次来看,和林格尔新区争当”最强算力”的核心优势在于其绿色与高效

    业内人士指出,华电新能源智慧运营中心通过集中调度风光电,实现了”以电强算”的绿色发展模式

    业内人士指出,在算网协同方面,和林格尔新区建成了领先全国的”2520″超低时延网络圈,实现了呼包鄂乌同城2毫秒、至京津冀5毫秒、至长三角粤港澳20毫秒的数据往返效率

    从更深层次来看,在算电协同方面,新区作为国家首批试点,依托蒙西电网绿电直供,实现了园区数据中心绿电使用率达86%以上,为全国提供了最低的绿色算力电价

    值得关注的是,上游有显鸿科技的”蒙芯”物联网芯片研发,中游有新华三集团投资20亿元的中央实验室,下游则吸引了云天畅想等边缘计算领军者,支撑云游戏、AIGC等实时交互场景

    从更深层次来看,目前,和林格尔新区已构建起”上游服务器机柜制造、中游算力底座集群、下游数据应用开发”的完整产业生态,正全力成为辐射全国的绿色算力高地

    可以预见,这一趋势将在未来深刻影响IDC行业格局

    如果您正在寻找优质的台湾原生VPS,欢迎访问 www.isclouder.com 了解更多