码迷,mamicode.com
首页 > 2021年02月15日 > 全部分享
mongodb的配置参数
Mongodb启动命令mongod参数说明mongod的主要参数有: 基本配置 --quiet # 安静输出 --port arg # 指定服务端口号,默认端口27017 --bind_ip arg # 绑定服务IP,若绑定127.0.0.1,则只能本机访问,不指定默认本地所有IP --logpat ...
分类:数据库   时间:2021-02-15 11:54:59    阅读次数:0
IfcBinary
IfcBinary是一种定义的简单数据类型BINARY,可用于对二进制数据(如嵌入的纹理)进行编码。 注意:引入此类型是为了保持与所有本机类型的一致性。未来的IFC版本可能会在IfcSimpleValue中支持此数据类型,以便在特性集上使用。 类型:二进制 IFC4 ADD1中的历史记录新类型(修改 ...
分类:其他好文   时间:2021-02-15 11:54:43    阅读次数:0
MongoDB 3.0.6的主,从,仲裁节点搭建
在MongoDB所在路径创建log和data目录mkdir logmkdir data 在data目录下 创建master、slaver、arbiter路径 mkdir master mkdir slaver mkdir arbiter 新建日志文件在log下执行 touch mongodb.log ...
分类:数据库   时间:2021-02-15 11:54:26    阅读次数:0
The Meta-Object System Signals & Slots
The Meta-Object System | Qt Core 6.0.1 https://doc.qt.io/qt-6/metaobjects.html Signals & Slots | Qt Core 6.0.1 https://doc.qt.io/qt-6/signalsandslots. ...
分类:Web程序   时间:2021-02-15 11:54:10    阅读次数:0
单源最短路 : 多起点
https://www.acwing.com/problem/content/1139/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
分类:其他好文   时间:2021-02-15 11:53:52    阅读次数:0
单源最短路 : 拆点
https://www.acwing.com/problem/content/1133/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
分类:其他好文   时间:2021-02-15 11:53:38    阅读次数:0
单源最短路 : 计数
https://www.acwing.com/problem/content/1136/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
分类:其他好文   时间:2021-02-15 11:53:26    阅读次数:0
leetcode_628. 三个数的最大乘积
给你一个整型数组 nums ,在数组中找出由三个数组成的最大乘积,并输出这个乘积。 示例 1: 输入:nums = [1,2,3] 输出:6 示例 2: 输入:nums = [1,2,3,4] 输出:24 示例 3: 输入:nums = [-1,-2,-3] 输出:-6 提示: 3 <= nums. ...
分类:其他好文   时间:2021-02-15 11:53:07    阅读次数:0
Flask AttributeError 'Request' object has no attribute 'is_xhr'解决办法
flask版本0.12.5 运行时会报以上错误,原因是因为werkzeug的版本大于等于1.x版本。 解决办法,降低werkzeug的版本即可 pip uninstall Werkzeug pip install Werkzeug==0.16.1 ...
分类:其他好文   时间:2021-02-15 11:52:49    阅读次数:0
markdown学习
Markdown学习 标题 #+ +标题 一级标题 ##+ +标题 二级标题 …… 字体 hello,world! 两个*中间字体为加粗 hello,world! 一个*中间字体为斜体 hello,world! 三个*中间字体为斜体加粗 hello,world! 两个~ 引用 可爱的人 >+ +引用 ...
分类:其他好文   时间:2021-02-15 11:52:23    阅读次数:0
0138. Copy List with Random Pointer (M)
Copy List with Random Pointer (M) 题目 A linked list is given such that each node contains an additional random pointer which could point to any node in ...
分类:其他好文   时间:2021-02-15 11:52:08    阅读次数:0
Python-collections模块之defaultdict
defaultdict defaultdict 是 dict 类型的子类,正如其名,初始化时,可以给key指定默认值,什么意思呢?直接看代码。如果是普通的dict对象,访问一个不存在的key时,会报错: dict1 = dict() print(dict1['a']) """ Traceback ( ...
分类:编程语言   时间:2021-02-15 11:51:53    阅读次数:0
AcWing 1222. 密码脱落
原题链接 考察:区间DP+线性dp 思路一: 正向求解,f[i][j]表示[i,j]区间内应该删去的字符数.要注意的是如果i>j,那么为不合法区间,设置f[i][j] = 0.i = j,单个字符一定回文,f[i][j] = 0.接下来就是划分集合:s[i]=s[j]可缩小到f[i+1,j-1].如 ...
分类:Windows程序   时间:2021-02-15 11:51:39    阅读次数:0
继承React基础组件时,泛型写法
一、基础组件 export interface BaseProps { name: string; } export interface BaseState { age: number; } export class BaseComp<P extends BaseProps = any, S ext ...
分类:其他好文   时间:2021-02-15 11:51:28    阅读次数:0
【springMVC中tomcat控制台乱码问题 】
我遇到的tomcat乱码可以分几种: 测试代码: @RestController public class TestController { @RequestMapping("/a1") public String test(){ System.out.println("TestController ...
分类:编程语言   时间:2021-02-15 11:51:13    阅读次数:0
【设计模式 - 结构型模式】2. 桥接模式
一、定义 考虑这样一个需求:绘制矩形、圆形、三角形这三种图案。按照面向对象的理念,我们至少需要个具体类,对应三种不同的图形。 // 抽象形状类IShape class IShape { public: void draw(); }; // 三个具体形状类:矩形、圆形、三角形 class Rectan ...
分类:其他好文   时间:2021-02-15 11:50:55    阅读次数:0
剑指 Offer 50. 第一个只出现一次的字符
题意 如题目所示 思路 遍历字符串建立一个哈希表来统计每个字符出现的次数,然后再从头遍历字符串进行查询即可 代码 class Solution { public: char firstUniqChar(string s) { if(s.empty()) { return ' '; } unorder ...
分类:其他好文   时间:2021-02-15 11:50:39    阅读次数:0
192条   上一页 1 ... 7 8 9 10 11 12 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!