Distributed file storage: simple use and principle analysis of FastDFS

Introduction FastDFS belongs to the category of distributed storage. The distributed file system FastDFS is very suitable for small and medium-sized projects. When I took over the maintenance of the company's image service, I began to contact it. The purpose of this article is to summarize the knowledge of FastDFS. Two 2-core 4G alicloud serv ...

Added by DigitalExpl0it on Thu, 12 Dec 2019 15:55:27 +0200

Principle of Flutter and practice of meituan

Alibaba P7 mobile Internet architect advanced video (in daily update) for free, please click: https://space.bilibili.com/474380680 Take out full category page practice After investigating the features and implementation principles of Flutter, the take out plan is to launch the full category page of Flutter in grayscale. For the integration mode ...

Added by Fakcon on Thu, 12 Dec 2019 08:30:19 +0200

Brief introduction of new features of systemd and common type analysis of unit, using systemd to manage the nginx of compilation and installation

1. New features of SYSTEMd Process (start) all services in parallel. Service control logic based on dependency definition System state snapshot Activate the process on demand, only when it is accessed for the first time can it really start; 2. Common unit types of SYSTEMd target: simulate the implementation level; service: define system service ...

Added by Sandip on Wed, 11 Dec 2019 20:13:40 +0200

OkHttp3 source code details cache strategy

Reasonable use of local cache can effectively reduce network overhead and response delay. The HTTP header also defines many cache related domains to control the cache. Let's talk about the implementation details of the cache part in OkHttp today. HTTP cache policyFirst of all, let's understand the related domains of the cache part in the HTTP p ...

Added by Fog Juice on Mon, 18 Nov 2019 11:58:13 +0200

Spring cloud learning notes 2-service provider Eureka client

Service provider Eureka client 1. overview 2. steps 2.1 new construction 2.2 startup 2.3 configuration file application 1. overview In fact, it is a client. The service is registered in the eureka service center, so that the service can be provided to other clients. 2. steps 2.1 new constr ...

Added by chelnov63 on Wed, 30 Oct 2019 18:48:27 +0200

Spring Cloud Alibaba nacos configuration center

background In the last article, we talked about how to build a registry. This time, we talked about how to use nacos as a registry. Spring cloud Alibaba basis to create basic dependency First of all, we create a spring cloud Alibaba basis basic dependency project to work out the common version we want to use. spring boot version 2.1.7.RELEASE ...

Added by reaper7861 on Sun, 27 Oct 2019 18:42:05 +0200

OCA/OCP Oracle database 12c exam guide reading notes: Chapter 18: The AWR and the Alert System

The following Automatic Workload Repository is represented by AWR 12c is self managed most of the time. Maintenance tasks run automatically and diagnostic information is collected regularly. Diagnosing performance problems is time-consuming and requires skills. 12c has the Alert system and diagnostic ad ...

Added by antonbrk on Sat, 26 Oct 2019 17:00:37 +0300

Spring cloud -- declarative call to Feign

Feign declarative call I. about Feign When using the Ribbon and RestTemplate to consume services, one of the most troublesome points is that every time you need to splice URL s and organize parameters, so with Feign declarative call, Feign's primary goal is to make the calling process of Java HTTP client very simple. It adopts the style of decl ...

Added by joinx on Tue, 22 Oct 2019 13:59:15 +0300

[original] Linux memory management - zoned page frame allocator - 3

background Read the fueling source code! - by Lu Xun A picture is worth a thousand words. --By Golgi Explain: Kernel version: 4.14 ARM64 processor, Contex-A53, dual core Using tool: Source Insight 3.5, Visio 1. overview This article will analyze watermark. Simply put, when using the zoned page frame allocator to allocate pages, the availa ...

Added by FSGr33n on Sun, 20 Oct 2019 12:46:52 +0300

unit11 Virtual Machine Management Commands, Simple Installation of Virtual Machines, Installation of Scripts Virtual Machines

#### script installation virtual machine #!/bin/bash virt-install \ --cdrom /home/kiosk/Desktop/rhel-server-7.3-x86_64-dvd.iso \ --ram 1024 \ --cpus 1 \ --disk /var/lib/libvirt/images/test.qcow2,bus=virtio,size=9 \ ##I don't know. Wait a minute. --name test \ --network bridge=br0,model=virtio & ##In ...

Added by riwan on Wed, 09 Oct 2019 09:35:24 +0300