使用Go与redis构建有趣的应用client, _ := redis.Dial("tcp", "localhost:6379") defer client.Close() repl := client.Cmd("PING") content, _ := repl.Str() fmt.Println(content) // "PONG" } 连接客户端 package main import ( client, _ := redis.Dial("tcp", "localhost:6379") defer client.Close() repl := client.Cmd("PING") content, _ := repl.Str() fmt.Println(content) // "PONG" } 连接服务器器 连接客户端 package main import client, _ := redis.Dial("tcp", "localhost:6379") defer client.Close() repl := client.Cmd("PING") content, _ := repl.Str() fmt.Println(content) // "PONG" } 连接服务器器 执⾏行行命令并获取回复 连接客户端 package0 码力 | 176 页 | 2.34 MB | 1 年前3
julia 1.10.10Parallelization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 372 29.6 REPL formatting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 373CONTENTS vi algebra backends . . . . . . . . . . . . . . . . . . . . . . . . . . 445 35 Workflow Tips 446 35.1 REPL-based workflow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 446 35.2 Browser-based . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 458 37.3 Sessions and the REPL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 458 37.4 Scripting . . . . . .0 码力 | 1692 页 | 6.34 MB | 3 月前3
Julia 1.10.9Parallelization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 372 29.6 REPL formatting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 373CONTENTS vi algebra backends . . . . . . . . . . . . . . . . . . . . . . . . . . 445 35 Workflow Tips 446 35.1 REPL-based workflow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 446 35.2 Browser-based . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 458 37.3 Sessions and the REPL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 458 37.4 Scripting . . . . . .0 码力 | 1692 页 | 6.34 MB | 3 月前3
Julia 1.11.5 DocumentationParallelization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 395 30.6 REPL formatting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 396 30.7 System latency, package loading and package precompiling time . . . . . . . . . 476 36 Workflow Tips 479 36.1 REPL-based workflow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 479 36.2 Browser-based . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 492CONTENTS viii 38.3 Sessions and the REPL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 492 38.4 Scripting . . . . . .0 码力 | 2007 页 | 6.73 MB | 3 月前3
Julia 1.11.6 Release NotesParallelization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 395 30.6 REPL formatting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 396 30.7 System latency, package loading and package precompiling time . . . . . . . . . 476 36 Workflow Tips 479 36.1 REPL-based workflow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 479 36.2 Browser-based . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 492CONTENTS viii 38.3 Sessions and the REPL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 492 38.4 Scripting . . . . . .0 码力 | 2007 页 | 6.73 MB | 3 月前3
Julia 1.11.4Parallelization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 395 30.6 REPL formatting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 396 30.7 System latency, package loading and package precompiling time . . . . . . . . . 476 36 Workflow Tips 479 36.1 REPL-based workflow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 479 36.2 Browser-based . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 492CONTENTS viii 38.3 Sessions and the REPL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 492 38.4 Scripting . . . . . .0 码力 | 2007 页 | 6.73 MB | 3 月前3
The Node.js Handbook
Google Cloud Platform 10.5. Virtual Private Server 10.6. Bare metal 11. How to use the Node.js REPL 11.1. Use the tab to autocomplete 11.2. Exploring JavaScript objects 11.3. Explore global objects objects 11.4. The _ special variable 11.5. The Up arrow key 11.6. Dot commands 11.7. Run REPL from JavaScript file 12. Node, accept arguments from the command line 13. Output to the command line using Node.js REPL The node command is the one we use to run our Node.js scripts: node script.js If we run the node command without any script to execute or without any arguments, we start a REPL session:0 码力 | 161 页 | 1.66 MB | 1 年前3
julia 1.13.0 DEVGarbage Collection . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 400 30.7 REPL formatting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 400 30.8 System . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 483 36 Workflow Tips 490 36.1 REPL-based workflow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 490 36.2 Browser-based . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 503 38.3 Sessions and the REPL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 503 38.4 Scripting . . . . . .0 码力 | 2058 页 | 7.45 MB | 3 月前3
Julia 1.12.0 RC1Garbage Collection . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 401 30.7 REPL formatting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 401 30.8 System . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 484 36 Workflow Tips 491 36.1 REPL-based workflow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 491 36.2 Browser-based . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 504 38.3 Sessions and the REPL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 504 38.4 Scripting . . . . . .0 码力 | 2057 页 | 7.44 MB | 3 月前3
Julia 1.12.0 Beta4Garbage Collection . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 400 30.7 REPL formatting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 400 30.8 System . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 483 36 Workflow Tips 490 36.1 REPL-based workflow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 490 36.2 Browser-based . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 503 38.3 Sessions and the REPL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 503 38.4 Scripting . . . . . .0 码力 | 2057 页 | 7.44 MB | 3 月前3
共 577 条
- 1
- 2
- 3
- 4
- 5
- 6
- 58













