2019年12月23日 星期一

2019年在Windows Server 2016上使用Redis + Python


Windows 上的安装

今天是2019年12月23日,首先去微软的网页
https://github.com/microsoftarchive/redis/releases

找到在2016年7月1日发布的3.2.100版本,下载
https://github.com/microsoftarchive/redis/releases/download/win-3.2.100/Redis-x64-3.2.100.msi

安装时候注意2点,第一级的勾选加入PATH,第二记住预设的Port是6379。

检查状态

C:\Program Files\Redis\redis-cli.exe

cmd.exe > redis-cli info

设定连线

redis.windows.conf

C:\Program Files\Redis\redis.windows.conf

bind 127.0.0.1 10.0.0.5
protected-mode yes
requirepass foobared



End

2019年12月3日 星期二

c++ unordered_map





#include <iostream>
#include <unordered_map>

class A{
public:
    A(){}
    ~A(){}
    A(const A& a){std::cout<<"copy constructor"<<'\n';}
    void operator=(const A& a){std::cout<<"copy assignment"<<'\n';}
    A(const A&& a){std::cout<<"move constructor"<<'\n';}
    void operator=(const A&& a){std::cout<<"move assignment"<<'\n';}
};

void main() {
    std::unordered_map<int, A> m;
    for (int i=0; i<10; ++i) {
        m[i] = A();
        std::cout << i << ' ' << m.bucket_count() << '\n';
    }
    std::cout << m.size();
}



sadfsd


2023 Promox on Morefine N6000 16GB 512GB

2023 Promox on Morefine N6000 16GB 512GB Software Etcher 100MB (not but can be rufus-4.3.exe 1.4MB) Proxmox VE 7.4 ISO Installer (1st ISO re...