Building recommendation system based on collaborative filtering of users
1. Overview
Before that, I introduced how to build a recommendation system. Today, I will introduce how to build a practical recommendation based on the collaborative filtering of users.
2. Content
Collaborative filtering technology is widely used in recommendation system, which is a rapidly developing research field. Two common methods are ...
Posted on Fri, 26 Jun 2020 00:30:55 -0400 by lakshmiyb
SM2 encryption and decryption algorithm (based on GMSSL C code implementation) [non original, record it]
1, Elliptic curve cryptography
Elliptic curve: it is a kind of bivariate polynomial equation whose solution forms an elliptic curve.
Elliptic curve parameter: defines a unique elliptic curve. Two parameters g (base point) and n (order) are introduced. G point (xG, yG) is the base point on the elliptic c ...
Posted on Sat, 20 Jun 2020 04:22:35 -0400 by rane500
Kafka Quick Start-RdKafka Source Analysis
Kafka Quick Start (11) - RdKafka Source Analysis
1. RdKafka C Source Code Analysis
1. Kafka OP Queue
RdKafka encapsulates Kafka Broke's interactions and internally implemented operations into an Operator structure and then puts them into the OP processing queue for unified processing.The Kafka OP queue is the pipeline for inter-thread communic ...
Posted on Sun, 14 Jun 2020 20:23:45 -0400 by MrRosary
Real-Time Label Development - Build a real-time user portrait from scratch
Data Access
Access to data can be accessed by writing data to Kafka in real time, either directly or through real-time access methods such as oracle's ogg or mysql's binlog
ogg
Golden Gate (OGG) provides real-time capture, transformation and delivery of transaction data in heterogeneous environments.
Through OGG, data from oracle can be writ ...
Posted on Wed, 10 Jun 2020 22:48:11 -0400 by swizenfeld
ORACLE EMCC 12.1.0.5 installation configuration
1. Linux 6 + emcc12.1.0.5 installation environment introduction
l this set of environment is based on rhel6.10 + Oracle 11.2.0.4 single node database
L java development kit (JDK)1.6.0.43.0
L Oracle WebLogic Server 11g version 1 (10.3.6)
Orac l e Management Office 12c 5th Edition (12.1.0.5)
1.1 check users, groups
$ more /etc/oraInst.loc
inve ...
Posted on Tue, 02 Jun 2020 12:54:47 -0400 by HavokDelta6
CDH6.3.2 deployment of big data platform
Tags (space separated): building big data platform
1: Environment initialization
2: Installation of CDH6.3.2
1: Environment initialization
1.1 environment introduction
System: CentOS7.5X64
cat /etc/hosts
----
192.168.11.160 dev01.lanxintec.cn
192.168.11.161 dev02.lanxintec.cn
192.168.11.162 dev03.lanxintec.cn
----
1.2: Keyless l ...
Posted on Thu, 28 May 2020 11:01:15 -0400 by d-woo
Oracle RAC 12.2.0.1 Patch 30920127(Apr 2020)
Oracle RAC 12.2.0.1 Patch 30920127(Apr 2020)
Environment introduction:
Oracle RAC version: 12.2.0.1 (two nodes)
Operating system version: CentOS 7.4 64bit
1, Patch environment preparation
1.1 upload installation package
p6880880_122010_Linux-x86-64
p30920127_122010_Linux-x86-64
1.2 ensure the ipatch utility version
Patch 30920127 requires ...
Posted on Mon, 18 May 2020 12:04:03 -0400 by zrocker
Kafka Core API Producer
Producer sends demos asynchronously
stay Above The use of the AdminClient API was introduced, and now we know how to manage Kafka through the API in our applications.But in most application development, the most common scenario we face is to send messages to or consume messages from Kafka, which is a typical production/consumption model.This a ...
Posted on Sun, 17 May 2020 13:35:32 -0400 by klaibert26
Failure handling of Oracle database startup report ORA-00600 [kkdlcob-objn-exists]
*Author's introduction*****Original Creator: Lose SeriouslyContact number: 18081072613WeChat, QQ:18081072613Reprint to indicate origin
1. Failure PhenomenaToday, a customer's database started with an ORA-00600 [kkdlcob-objn-exists], [37] error, the database could not be opened, along with a good ORA-00704, requesting emergency rescue.Error st ...
Posted on Sat, 16 May 2020 15:17:23 -0400 by abbe-rocks
Kafka Core API - AdminClient API
Five Kinds of Kafka Client Role and Difference
stay Above It describes how to set up a Kafka service, so how do we access and integrate Kafka in development?This requires the use of the Kafka client API described in this article.The following is a diagram in the official document that illustrates the type of client that can be integrated with ...
Posted on Sat, 16 May 2020 13:28:18 -0400 by Ralf Jones