新一代分布式高性能图数据库的构建 - 沈游人持毫秒级的并发查询响应速度 易用 AQL(Atlas Graph Query Language) ,类 SQL 的图查询 语言,内置上百种分析函数, 面向分析师友好,拥抱标准, 基于 openCypher 向 ISO GQL 迈进 实时大图 支持万亿节点存储及流式计算 引擎的结合,最新数据实时入 库构图,为在线业务决策分析 提供有力支撑 AtlasGraph 架构及实现 新一代图技术应用特征简介 Takeaway of this property Properties Types (or classes) of vertices and edges Labels 查询语言:基于 Cypher 贴合 ISO GQL Standard • Incorporate by reference specifications from SQL/Framework and SQL/Foundation • Capabilities0 码力 | 38 页 | 24.68 MB | 1 年前3
C++20: An (Almost) Complete OverviewC++20 C++20 is big! Lots of new features! On Friday September 4, 2020, the C++20 standard passed ISO voting, expected to be formally published by the end of 2020.4 Agenda Modules Ranges 0 码力 | 85 页 | 512.18 KB | 6 月前3
THE FIRST EXPLORATION OF PROJECT SPARROWDevelop with Renode IV. Wrap-up 1) Tech Stack 1.1 Microkernel Overview I. Background https://en.wikipedia.org/wiki/Microkernel Security I. Background Difference Between Microkernel https://en.wikipedia.org/wiki/L4_microkernel_family I. Background L4 family tree: 1.2.1 seL4 Overview I. Background https://en.wikipedia.o e.g.: Source: https://www.tbrk.org/ 1.3 FOSS EDA Overview I. Background https://en.wikipedia.org/wiki/Comparison_of_EDA_software https://semiwiki.com/wikis/industry-wikis/eda-ope0 码力 | 68 页 | 13.14 MB | 1 年前3
C++高性能并行编程与优化 - 课件 - 15 C++ 系列课:字符与字符串为什么把 to_string 作为全局函数,而不是 string 类的构造函数? • 因为 cpp 之父喜欢解耦,他不想让数字转字符串这个特定的需求 ,和字符串本身的实现有太多耦合。 https://en.cppreference.com/w/cpp/string/basic_string/to_string to_string 应用案例 std::to_wstring 数字转宽字符串 • 同理还有 字符串转数字 • std::stoi/stof/stod 是标准库定义的一系列全局函数: • 相当于 js 的 parseInt/parseFloat/parseDouble 。 https://en.cppreference.com/w/cpp/string/basic_string/stol stoi 应用案例 • stoi 可以处理数字后面有多余字符的情况,例如 stoi(“42yuan”) find 还要去求 len = strlen(“str”) , 相对低效。 find 寻找子字符串 find 应用案例:计算子字符串出现了多少次 官方文档对 find 的描述 https://en.cppreference.com/w/cpp/string/basic_string/find 反向查找 rfind • find 是从字符串头部开始查找,返回第一次出现的地方。 • 而 rfind0 码力 | 162 页 | 40.20 MB | 1 年前3
C++高性能并行编程与优化 - 课件 - 14 C++ 标准库系列课 - 你所不知道的 set 容器, array , deq ue random_access_iterator 迭代器外包装 和他所包装的迭代器保持一致 reverse_iterator 和所包装的迭代器一致 https://en.cppreference.com/w/cpp/iterator/random_access_iterator https://www.cplusplus.com/reference/iterator/istream_iterator std::advance(it1, n) it1 += n std::advance(it1, -n) it1 -= n n = std::distance(it1, it2) n = it2 - it1 https://en.cppreference.com/w/cpp/iterator/distance 学有余力的同学可以看一下 glibc 源码 学有余力的同学可以看一下 glibc 源码 学有余力的同学可以看一下0 码力 | 83 页 | 10.23 MB | 1 年前3
C++高性能并行编程与优化 - 课件 - 02 现代 C++ 入门:RAII 内存管理求一个列表中所有数的和: # 参考资料 - [ 热心观众整理的学习资料 ](https://github.com/jiayaozhang/OpenVDB_and_TBB) - [C++ 官方文档 ](https://en.cppreference.com/w/) - [C++ 核心开发规范 ](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines org/cmake/help/latest/) - [Git 官方文档 ](https://git-scm.com/doc) - [GitHub 官方文档 ](https://docs.github.com/en) 古代: C 语言 近代: C++98 引入 STL 容器库 近现代: C++11 引入了 {} 初始化表达式 近现代: C++11 引入了 range-based for-loop 如果想使用0 码力 | 96 页 | 16.28 MB | 1 年前3
Visualize Time Enabled Data using ArcGIS Qt (C++) and Toolkitsetup the SDK - https://developers.arcgis.com/qt/get-started/ • Esri Careers - https://www.esri.com/en-us/about/careers/overview0 码力 | 10 页 | 734.09 KB | 6 月前3
Introduction to Mobile UI Test Automationconfig file: Platform name Platform version Device name Application path https://appium.io/slate/en/master/?javascript#appium-server-capabilities Demo Ready To Execute Note: Device name App path0 码力 | 41 页 | 4.75 MB | 1 年前3
Working with Asynchrony Generically: A Tour of C++ Executorsbeen requested, or… … register a callback to be executed when the caller requests stop. https://en.cppreference.com/w/cpp/header/stop_ tokenCANCELLATION IN SENDER/RECEIVER SENDER RECEIVER OPERATION0 码力 | 121 页 | 7.73 MB | 6 月前3
C++高性能并行编程与优化 - 课件 - 05 C++11 开始的多线程编程std::condition_variable_any 。 2. 他还有 wait_for() 和 wait_until() 函数,分别接受 chrono 时间段和时间点作为参数。 详见: https://en.cppreference.com/w/cpp/thread/condition_variable/wait_for 。 第 7 章:原子操作 经典案例:多个线程修改同一个计数器 • 多个线程同时往一个0 码力 | 79 页 | 14.11 MB | 1 年前3
共 12 条
- 1
- 2













