编辑
2023-12-25
编程
00

1. 前言

我们时常依赖于我们的习惯和认知,而导致不时有的偏见。就像《三体》中描写叶文洁年轻时伐木故事里的小人物看法一样,对于他来说伐木讲究的是越快越好,树龄的多少,并不影响锯它的速度。我总以为,在如今,微服务当道,分布式横行的后端开发场景,分布式锁,对于任何层级的程序员来讲都是了如指掌。事实证明并非如此,于是今天抽空写下这篇文章,通过 redis 讲述分布式锁的使用和要点,望你我共勉。

编辑
2023-09-21
编程
00

1. 虚拟线程

官方文档

1.1 虚拟线程的使用

  • java.lang.Thread
java
// 定义一个 runnable private static Runnable runnable = () -> { try { Thread thread = Thread.currentThread(); System.out.printf("name: %s, isVirtual: %b, isDaemon: %b%n", thread.getName(), thread.isVirtual(), thread.isDaemon()); Thread.sleep(Duration.ofSeconds(3)); } catch (Exception ignored) { } }; // 通过 Thread 启动虚拟线程和平台线程 public static void thread() { // Thread.ofVirtual() Thread thread1 = Thread.ofVirtual().name("thread-1").unstarted(runnable); Thread thread2 = Thread.ofPlatform().name("thread-2").unstarted(runnable); thread1.start(); thread2.start(); Thread.ofVirtual().name("thread-3").start(runnable); Thread.ofPlatform().name("thread-4").start(runnable); // ThreadFactory ThreadFactory factory = Thread.ofVirtual().name("thread-v-", 10L).factory(); factory.newThread(runnable).start(); factory.newThread(runnable).start(); ThreadFactory factory2 = Thread.ofPlatform().name("thread-p-", 10L).factory(); factory2.newThread(runnable).start(); factory2.newThread(runnable).start(); // Thread.startVirtualThread() Thread.startVirtualThread(runnable).setName("startVirtualThread"); } // 输出结果 /* name: thread-2, isVirtual: false, isDaemon: false name: thread-4, isVirtual: false, isDaemon: false name: thread-3, isVirtual: true, isDaemon: true name: thread-1, isVirtual: true, isDaemon: true name: thread-v-10, isVirtual: true, isDaemon: true name: thread-v-11, isVirtual: true, isDaemon: true name: startVirtualThread, isVirtual: true, isDaemon: true name: thread-p-10, isVirtual: false, isDaemon: false name: thread-p-11, isVirtual: false, isDaemon: false */
编辑
2023-08-18
其他
00
编辑
2023-08-09
其他
00

最近老是在网上看到一些博弈论的名词,瞬间整句话就不认识,记录一下,方便查找:

博弈论矩阵(Game Matrix)

类型 \ 情境合作背叛关系
正和博弈双赢双赢非竞争关系
零和博弈零和/平局零和/平局竞争关系
负和博弈负和/损失负和/损失竞争关系
非零和博弈协调/合作冲突/竞争相互冲突/相互协调
囚徒困境合作: 4, 4背叛: 1, 5相互冲突/相互协调
编辑
2023-08-01
编程
00

AI 作为时代的主旋律,了解和学习是必须得

  • Python是AI的主要编程语言:Python是开发和实施AI算法的首选语言之一。许多重要的AI库和框架,如TensorFlow、PyTorch、scikit-learn等,都是用Python编写的。

  • 丰富的AI库和工具:Python生态系统中有许多用于机器学习、深度学习、自然语言处理(NLP)等领域的优秀库和工具。这些库使你能够快速开发、训练和测试AI模型。

  • 可移植性和跨平台性:Python是跨平台的编程语言,可以在不同操作系统上运行。这使得你可以在不同的环境中部署和运行AI应用程序。