return [ 'connector' => 'Redis', // Redis 驱动 'expire' => null, // 任务的过期时间,默认为60秒; 若要禁用,则设置为 null 'default' => 'default', // 默认的队列名称 'host' => '127.0.0 ...
分类:
其他好文 时间:
2021-04-14 12:15:40
阅读次数:
0
输入一个数,分解成其质因子 1 #include<stdio.h> 2 3 int main() 4 { 5 int val,temp; 6 scanf("%d", &val); 7 printf("%d=1*", val); 8 temp = val; 9 for (int i = 2; i < ...
分类:
其他好文 时间:
2021-04-14 11:57:55
阅读次数:
0
#!/usr/bin/env python3#!-*- coding:UTF-8 -*- import osclass GetPath():# 获取所有目录 @staticmethod def get_dir(path): print("打印所有目录:") for root, dirs, files ...
分类:
编程语言 时间:
2021-04-14 11:51:07
阅读次数:
0
UE4支持多种内存分配器: /** Which allocator is being used */ enum EMemoryAllocatorToUse { Ansi, // Default C allocator Stomp, // Allocator to check for memory s ...
分类:
其他好文 时间:
2021-04-13 12:34:37
阅读次数:
0
You are given a data structure of employee information, which includes the employee's unique id, their importance value and their direct subordinates' ...
分类:
其他好文 时间:
2021-04-13 12:31:50
阅读次数:
0
1. 下载zookeeper https://mirrors.cnnic.cn/apache/zookeeper/ 选择带bin的 2. 解压 3.创建配置文件 cp ${path}/conf/zoo_sample.cfg ${path}/conf/zoo.cfg 4.修改配置文件 zk1配置 # ...
分类:
其他好文 时间:
2021-04-13 12:29:00
阅读次数:
0
JAVA环境配置 搜索JDK8,找到下载地址 同意协议,对应版本 双击进行安装 安装目录路径 我的电脑属性,高级系统设置 环境变量系统变量,JAVA_HOME+路径 Path添加两个值%JAVA_HOME%\bin,%JAVA_HOME%\jre\bin 检测 cmd+java -version是否 ...
分类:
编程语言 时间:
2021-04-13 12:27:29
阅读次数:
0
c语言入门教程–-6循环语句 c语言提供了以下几种循环类型。while循环for 循环do…while 循环 while循环 #include <stdio.h> int main () { /* 局部变量定义 */ int a = 10; /* while 循环执行 */ while( a < 2 ...
分类:
编程语言 时间:
2021-04-13 12:12:17
阅读次数:
0
type Location = { //这是一个location pathname: Pathname; search: QueryString; query: Query; state: LocationState; action: Action; key: LocationKey;};class ...
分类:
其他好文 时间:
2021-04-13 12:11:38
阅读次数:
0
javaSE总结 JDK 开发者工具包 配置环境变量 java_HOME 配置到JDK的根目录 在系统变量path中配置环境变量:开发环境、运行时环境 JRE 运行环境 基础语法 命令行参数: javac Hello.java java Hello 文档注释:/** */ javadoc生成帮助文档 ...
分类:
编程语言 时间:
2021-04-13 11:58:49
阅读次数:
0