Redis Learning Notes - Lua Scripts - Using Lua Scripts

Reference resources: http://www.redis.cn/commands/eval.html https://www.runoob.com/redis/redis-scripting.html Redis has supported Lua scripting since version 2.6.0. By embedding the Lua environment in the server, Redis clients can use Lua scripts t ...

Posted by harnacks on Mon, 02 Sep 2019 04:10:05 +0200

firewalld firewall infrastructure configuration

Linux firewall system mainly works in the network layer. It belongs to the typical packet filtering firewall for real-time filtering and restriction of TCP/IP packets. How does the Linux firewall check data traffic? For the data packet entering the s ...

Posted by Toxinhead on Sun, 01 Sep 2019 12:53:53 +0200

Liquid Network Lightning Payment Guide

This tutorial describes how to use c-lightning of Liquid side chains to create lightning payment channels. Using these payment channels, users can trade Liquid-BTC in real time and privately. Liquid networks include support for private transactions and asset issuance, so users can use lightning payment channels to trade any assets issued on Liq ...

Posted by patrickmvi on Thu, 29 Aug 2019 12:06:39 +0200

[20] Front-end internship: react official document learning (Advanced Guide: React refs and pop-up windows / MyErrorBoundary /suspense / Context)

React refs and pop-up windows import React, {Component} from 'react'; import ReactDOM from 'react-dom'; import './index.css'; import App from './App'; import * as serviceWorker from './serviceWorker'; class OuterClickExample extends React.Comp ...

Posted by massimoGornatti on Wed, 28 Aug 2019 12:42:31 +0200

Linux Domain Name Service DNS

What is DNS The full name of DNS is Domain Name System, which means Domain Name Resolution System. It is the responsibility of translating a domain name into a recognizable IP for connecting different computer devices. linux Configuration and Files for DNS Resolution There are three files in linux about dns parsing: /etc/hosts Records ip addre ...

Posted by gojiita on Tue, 27 Aug 2019 04:46:02 +0200

Python Deep Learning Reading Notes (Optimize IMDB comment classification using pre-trained word embedding)

Chapter Six: Deep Learning for Text and Sequence   In-depth learning does not accept the original text as input but only processes numeric tensors. Text vectorization refers to the process of converting text to numeric tensors.(Text can be spli ...

Posted by pothole_89 on Tue, 27 Aug 2019 04:18:22 +0200

CLI Wallet Operation: Voting for Miners

Vote for the miners To ensure that the network continues to operate and has an impact on its development, you can vote to select some miners who are selected to create new blocks and verify transactions. Record valid transaction information in newl ...

Posted by RDKL PerFecT on Mon, 26 Aug 2019 11:53:39 +0200

python data structure and GIL and multiprocess

A data structure and GIL 1 queue Standard library queue module, provides queue, LIFO queue, priority queue for FIFOThe Queue class is thread-safe, suitable for secure exchange of data between multiple threads, using Lock and Condition internally The reason why the size of the container is inaccurate is that it is impossible to get the exa ...

Posted by jsucupira on Mon, 26 Aug 2019 03:14:26 +0200

Message Push Protocol

Message Push Protocol Message Push Protocol is an application-layer text protocol to solve the real-time message push problem on CS/BS/APP side. It works on websockets or websockets using json data structure description. Business scenarios determin ...

Posted by treeleaf20 on Sat, 24 Aug 2019 04:20:52 +0200

Distributed Lock-Redission

Redission Distributed Lock brief introduction Redission is a Redis Official Network Distributed Solution Official website: https://redisson.org/ github: https://github.com/redisson/redisson#quick-start function   usedBy API   ...

Posted by marsooka on Sat, 24 Aug 2019 04:07:40 +0200