Tag:source code
-
Time:2021-1-21
Cargo is a built-in build system and package manager in the rust tool chain. It can deal with many trivial but important tasks, such as building code, downloading and compiling dependency library, etc. Most rust users will choose it to manage their own rust projects. Create project Managing rust projects and their module dependencies Check […]
-
Time:2021-1-21
Hello, everyone. I amYang Zai, janusgraph graphic series,Real time update~ Table of contents of articles in figure database: To sort out all the related articles, please move (hyperchain) to:Figure database series – general contents of articles Source code analysis related to view GitHub (code text is not easy, find a star ~): https://github.com/YYDreamer/janusgraph Address of […]
-
Time:2021-1-21
date: 2018-8-01 14:22:17Title: swoft | source code interpretation Series 2: what did swoft do in the startup stage?Description: read the source code of the sowft framework to learn about the start-up phase of the sowft When you first contact swift, you will feelIt’s a little stressfulTo put it more intuitivelyhardThe development team is not in […]
-
Time:2021-1-21
preface:The last article introduces the composition and genealogy of HBase filter. This article mainly introduces the comparator of HBase filter, which is also a necessary low-level skill for learning HBase filter. The source code in this article is based on HBase 1.1.2.2.6.5.0-292 HDP version. All comparator implementation classes of HBase inherit from the parent class […]
-
Time:2021-1-21
Microservice architecture is adopted to reduce the coupling between systems and the impact of single application failure on business system. Meanwhile, this architecture is adopted to lay a technical foundation for Devops in the future. At the same time, it also reduces the interdependence between teams and improves work efficiency Build microservice architecture based […]
-
Time:2021-1-21
1: Background 1. Tell a story I remember recording a redis video course for beginners a long time ago. At that time, I interpreted it with a lot of source code. I thought it was ok, but there was still a very core point that was not shared, which was source level debugging,Yes, it’s far […]
-
Time:2021-1-21
For this Kafka project, I will focus on the overall architecture of the system, design and code implementation. With you bar source code, learn skills, knowledge. I hope you continue to pay attention and witness growth together! I believe: the road of technology, ten years as one day! Ten years to sharpen a sword! preface […]
-
Time:2021-1-20
Title:Use the * sign to output the pattern of the letter C. Program analysis:You can write the letter C on the paper with “*” first, and then output it in line. Source code: #include “stdio.h” int main() { Printf (“use the * sign to output the letter C!”; printf(” ****\n”); printf(” *\n”); printf(” * \n”); […]
-
Time:2021-1-20
preface Recently, I’ve been busy with all kinds of work. Even reading spring source code has been suspended, and DOC view has put plans on hold. Although I want to have many functions, I always have to take my time. Several small partners also mentioned issues in GitHub: Hope to support idea 2020.3 There is […]
-
Time:2021-1-20
Query construction method in laraveltoSqlThe resulting SQL statement does not bind condition parameters, similar to thisselect * from users where id = ?So I wrote an extension package laravel dump SQL to get the complete SQL statement. Source code laravel-dump-sql – https://github.com/guanguans/… install $ composer require guanguans/laravel-dump-sql -v Publishing services $ php artisan vendor:publish –provider=”Guanguans\\LaravelDumpSql\\ServiceProvider” […]
-
Time:2021-1-19
stayFlink’s time and watermarksIn this article, the related contents of Flink’s time and water level are described. You may have to ask, how do I access timestamps and watermarks? First of all, you can’t access it through the normal datastream API. You need to use the underlying API process function provided by Flink. Process function […]
-
Time:2021-1-19
Go code is hosted in Github.com Site, the site is based on git code management tools, many famous projects are hosted in the site code. There are other similar hosting sites code.google.com 、 bitbucket.org And so on. There is a common standard for the project package path of these websites, as shown in the figure […]