Building Message Features and User Profile Pages
Overview
This tutorial covers implementing the following features:
Likes, loves, and comments notification lists
System announcements
User profile page
Chat with strangers functionality
Who viewed my profile feature
Notification Lists (Likes, Loves, Comments)
The notification center displays interactions from other users on your content. Si ...
Posted on Sun, 10 May 2026 23:19:01 +0000 by usefulphp
Dubbo Framework Core Concepts and Advanced Features
Measuring Website Performance Metrics
Response Time: Total duration from request initiation to response reception.
Concurrency: Number of simultaneous requests a system can handle.
Concurrent Connections: Total TCP connections established between clients and server per second.
Queries Per Second (QPS): Requests processed per second.
Concurrent ...
Posted on Sun, 10 May 2026 19:41:42 +0000 by joe__
Implementing a Simplified Dubbo SPI Mechanism
Core Annotations (Simulating Dubbo)
1. @SPI Annotation (Marking Extension Interfaces)
import java.lang.annotation.*;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface SPI {
// Default extension name
String value() default "";
}
2. @Adaptive Annotation (Simplified Adaptive Methods)
import java.lang.annot ...
Posted on Fri, 08 May 2026 11:06:54 +0000 by bluejay002