How to integrate custom SPI with sentinel to realize fuse current limiting

preface We talked before Talk about how to implement an SPI with interceptor function . At that time, the core idea of our implementation was to use responsibility chain + dynamic agent. Today, let's talk about how to integrate sentinel to realize fuse current limiting through dynamic agent Pre knowledge Introduction to alibaba sentinel Se ...

Posted on Tue, 07 Dec 2021 03:39:45 -0500 by alexinjamestown

GRPC: quick create static file download Web service

introduce This article describes how to rk-boot Quickly build a static file download Web service. What is the static file download Web UI? Quickly build Web services that can download files through configuration files. Please visit the following address for a complete tutorial: https://rkdocs.netlify.app/cn install go get gi ...

Posted on Mon, 06 Dec 2021 23:32:21 -0500 by kevbev16

Databend built in scalar function development guide

Original text: https://databend.rs/development/how-to-write-scalar-functions/ What is a scalar function? ¶ Scalar functions (sometimes referred to as user-defined functions / UDFs) return a single value for each record, rather than as a result SET, and can be used in most places in queries or SET statements, except for the ...

Posted on Mon, 06 Dec 2021 20:16:35 -0500 by PHP'er

Deploying Hexo blogs using GitHub Actions

Better reading experience Automatic deployment of Hexo blog The original way to publish a blog with Hexo is to edit the file directly, but in the long run, there are the following problems: The migration is inconvenient. When writing a blog in other places, you can either run around with your notebook on your back, or copy the whole folder to ...

Posted on Sun, 05 Dec 2021 06:30:10 -0500 by mvd7793

My screenshot plugin was used by Gitee

preface Last Saturday, a group friend @ said that Gitee's feedback module added a screenshot function. I went to experience it and found that they used my plug-in 😁, This article will share this plug-in with you. All interested developers are welcome to read this article. Plug in address and implementation principle This plug-in is impleme ...

Posted on Wed, 01 Dec 2021 09:37:48 -0500 by centerwork

Go through axios completely and never be afraid to write requests again

axios request method It mainly includes get, post, put, patch and delete get get data post Submit data (form submission + file upload) put Update data (push all data to the server) patch Update data (only the modified data is pushed to the back end) dlelete Delete data get method Wri ...

Posted on Wed, 01 Dec 2021 07:25:42 -0500 by gamerzfuse

[Vue] how to better package components? A few tips will help you become a master of component packaging and make our packaged components more elegant and easy to use

catalogue 1, $attrs2, $listeners 1, $attrs In the process of using components, we sometimes need to pass Prop to encapsulated sub components For example: <template> <el-input v-model="innerVal" placeholder="placeholder" @input="$emit('input',$event)" > </el-input> </template> <script> export ...

Posted on Mon, 29 Nov 2021 14:06:43 -0500 by Shovinus

Python can meet any API you need

Abstract: the concepts and techniques learned in this tutorial will allow you to practice with any API you like, and use Python to meet any API you may have. This article is shared from Huawei cloud community< Python and API: successful combination of reading public data >, author: Yuchuan. Understanding API API stands for applicat ...

Posted on Sun, 28 Nov 2021 20:43:51 -0500 by the elegant

Apache ShardingSphere 5.0.0 kernel optimization and upgrade Guide

After nearly two years of optimization and polishing, Apache shardingsphere version 5.0.0 GA was finally officially released this month. Compared with version 4.1.1 GA, version 5.0.0 GA has been greatly optimized at the kernel level. Firstly, the kernel is completely transformed based on the pluggable architecture, and various functions in the ...

Posted on Fri, 26 Nov 2021 07:33:11 -0500 by OOP

Introduction to Svelte -- implementing cross framework component reuse with Web Components

Svelte is a new method of building Web applications. It has been tepid since its launch. It has not become the fourth largest framework after Angular, React and VUE, but it has not lost its popularity and nobody cares. An important reason for this is that svelte's core idea is to reduce the amount of code in the framework runtime through static ...

Posted on Wed, 24 Nov 2021 11:30:13 -0500 by Havery Jay