Parity. Ethereum Client.
By Wood/Paronyan/Kotewicz/Drwięga/Volf et al.
Copyright 2015, 2016, 2017, 2018 Parity Technologies (UK) Ltd

parity [options]
parity [options] ui
parity [options] dapp <PATH>
parity [options] daemon <PID-FILE>
parity [options] account new
parity [options] account list
parity [options] account import <PATH>...
parity [options] wallet import <PATH>
parity [options] import --format=[FORMAT] [FILE]
parity [options] export blocks --format=[FORMAT] --from=[BLOCK] --to=[BLOCK] [FILE]
parity [options] export state [--no-storage] [--no-code] --min-balance=[WEI] --max-balance=[WEI] --at=[BLOCK]
--format=[FORMAT] [FILE]
parity [options] signer new-token
parity [options] signer list
parity [options] signer sign [ID]
parity [options] signer reject <ID>
parity [options] snapshot --at=[BLOCK] <FILE>
parity [options] restore [FILE]
parity [options] tools hash <FILE>
parity [options] db kill

Operating Options:
--public-node
Start Parity as a public web server. Account storage and transaction signing will be delegated to the UI.

--no-download
Normally new releases will be downloaded ready for updating. This disables it. Not recommended.

--no-consensus
Force the binary to run even if there are known issues regarding consensus. Not recommended.

--light
Experimental: run in light client mode. Light clients synchronize a bare minimum of data and fetch necessary
data on-demand from the network. Much lower in storage, potentially higher in bandwidth. Has no effect with
subcommands.

--force-direct
Run the originally installed version of Parity, ignoring any updates that have since been installed.

--mode=[MODE]
Set the operating mode. MODE can be one of: last - Uses the last-used mode, active if none; active - Parity
continuously syncs the chain; passive - Parity syncs initially, then sleeps and wakes regularly to resync; dark
- Parity syncs only when the RPC is active; offline - Parity doesn't sync. (default: last)

--mode-timeout=[SECS]
Specify the number of seconds before inactivity timeout occurs when mode is dark or passive (default: 300)

--mode-alarm=[SECS]
Specify the number of seconds before auto sleep reawake timeout occurs when mode is passive (default: 3600)

--auto-update=[SET]
Set a releases set to automatically update and install. SET can be one of: all - All updates in the our release
track; critical - Only consensus/security updates; none - No updates will be auto-installed. (default: critical)

--release-track=[TRACK]
Set which release track we should use for updates. TRACK can be one of: stable - Stable releases; beta - Beta
releases; nightly - Nightly releases (unstable); testing - Testing releases (do not use); current - Whatever
track this executable was released on. (default: current)

--chain=[CHAIN]
Specify the blockchain type. CHAIN may be either a JSON chain specification file or olympic, frontier,
homestead, mainnet, morden, ropsten, classic, expanse, musicoin, ellaism, testnet, kovan or dev. (default:
foundation)

--keys-path=[PATH]
Specify the path for JSON key files to be found (default: $BASE/keys)

--identity=[NAME]
Specify your node's name. (default: )

-d, --base-path=[PATH]
Specify the base data storage path.

--db-path=[PATH]
Specify the database directory path

Convenience options:
--unsafe-expose
All servers will listen on external interfaces and will be remotely accessible. It's equivalent with setting the
following: --{{ws,jsonrpc,ui,ipfs,secret_store,stratum}}-interface=all --*-hosts=all This option is UNSAFE
and should be used with great care!

-c, --config=[CONFIG]
Specify a configuration. CONFIG may be either a configuration file or a preset: dev, insecure, dev-insecure,
mining, or non-standard-ports. (default: $BASE/config.toml)

--ports-shift=[SHIFT]
Add SHIFT to all port numbers Parity is listening on. Includes network port and all servers (RPC, WebSockets,
UI, IPFS, SecretStore). (default: 0)

Account options:
--no-hardware-wallets
Disables hardware wallet support.

--fast-unlock
Use drasticly faster unlocking mode. This setting causes raw secrets to be stored unprotected in memory, so use
with care.

--keys-iterations=[NUM]
Specify the number of iterations to use when deriving key from the password (bigger is more secure) (default:
10240)

--accounts-refresh=[TIME]
Specify the cache time of accounts read from disk. If you manage thousands of accounts set this to 0 to disable
refresh. (default: 5)

--unlock=[ACCOUNTS]
Unlock ACCOUNTS for the duration of the execution. ACCOUNTS is a comma-delimited list of addresses. Implies
--no-ui.

--password=[FILE]...
Provide a file containing a password for unlocking an account. Leading and trailing whitespace is trimmed.
(default: [])

UI options:
--force-ui
Enable Trusted UI WebSocket endpoint, even when --unlock is in use.

--no-ui
Disable Trusted UI WebSocket endpoint.

--ui-no-validation
Disable Origin and Host headers validation for Trusted UI. WARNING: INSECURE. Used only for development.

--ui-interface=[IP]
Specify the hostname portion of the Trusted UI server, IP should be an interface's IP address, or local.
(default: local)

--ui-hosts=[HOSTS]
List of allowed Host header values. This option will validate the Host header sent by the browser, it is
additional security against some attack vectors. Special options: "all", "none",. (default: none)

--ui-path=[PATH]
Specify directory where Trusted UIs tokens should be stored. (default: $BASE/signer)

--ui-port=[PORT]
Specify the port of Trusted UI server. (default: 8180)

Networking options:
--no-warp
Disable syncing from the snapshot over the network.

--no-discovery
Disable new peer discovery.

--reserved-only
Connect only to reserved nodes.

--no-ancient-blocks
Disable downloading old blocks after snapshot restoration or warp sync.

--no-serve-light
Disable serving of light peers.

--warp-barrier=[NUM]
When warp enabled never attempt regular sync before warping to block NUM.

--port=[PORT]
Override the port on which the node should listen. (default: 30303)

--min-peers=[NUM]
Try to maintain at least NUM peers. (default: 25)

--max-peers=[NUM]
Allow up to NUM peers. (default: 50)

--snapshot-peers=[NUM]
Allow additional NUM peers for a snapshot sync. (default: 0)

--nat=[METHOD]
Specify method to use for determining public address. Must be one of: any, none, upnp, extip:<IP>. (default:
any)

--allow-ips=[FILTER]
Filter outbound connections. Must be one of: private - connect to private network IP addresses only; public -
connect to public network IP addresses only; all - connect to any IP address. (default: all)

--max-pending-peers=[NUM]
Allow up to NUM pending connections. (default: 64)

--network-id=[INDEX]
Override the network identifier from the chain we are on.

--bootnodes=[NODES]
Override the bootnodes from our chain. NODES should be comma-delimited enodes.

--node-key=[KEY]
Specify node secret key, either as 64-character hex string or input to SHA3 operation.

--reserved-peers=[FILE]
Provide a file containing enodes, one per line. These nodes will always have a reserved slot on top of the
normal maximum peers.

API and console options – RPC:
--no-jsonrpc
Disable the JSON-RPC API server.

--jsonrpc-port=[PORT]
Specify the port portion of the JSONRPC API server. (default: 8545)

--jsonrpc-interface=[IP]
Specify the hostname portion of the JSONRPC API server, IP should be an interface's IP address, or all (all
interfaces) or local. (default: local)

--jsonrpc-apis=[APIS]
Specify the APIs available through the JSONRPC interface. APIS is a comma-delimited list of API name. Possible
name are all, safe, web3, eth, net, personal, parity, parity_set, traces, rpc, parity_accounts, pubsub,
parity_pubsub, shh, shh_pubsub, signer, secretstore. You can also disable a specific API by putting '-' in the
front: all,-personal. (default: web3,eth,pubsub,net,parity,parity_pubsub,traces,rpc,shh,shh_pubsub)

--jsonrpc-hosts=[HOSTS]
List of allowed Host header values. This option will validate the Host header sent by the browser, it is
additional security against some attack vectors. Special options: "all", "none",. (default: none)

--jsonrpc-threads=[THREADS]
Turn on additional processing threads in all RPC servers. Setting this to non-zero value allows parallel cpu
-heavy queries execution. (default: 4)

--jsonrpc-cors=[URL]
Specify CORS header for JSON-RPC API responses. Special options: "all", "none". (default: none)

--jsonrpc-server-threads=[NUM]
Enables multiple threads handling incoming connections for HTTP JSON-RPC server.

API and console options – WebSockets:
--no-ws
Disable the WebSockets server.

--ws-port=[PORT]
Specify the port portion of the WebSockets server. (default: 8546)

--ws-interface=[IP]
Specify the hostname portion of the WebSockets server, IP should be an interface's IP address, or all (all
interfaces) or local. (default: local)

--ws-apis=[APIS]
Specify the APIs available through the WebSockets interface. APIS is a comma-delimited list of API name.
Possible name are web3, eth, pubsub, net, personal, parity, parity_set, traces, rpc, parity_accounts, pubsub,
parity_pubsub, shh, shh_pubsub, signer, secretstore. (default:
web3,eth,pubsub,net,parity,parity_pubsub,traces,rpc,shh,shh_pubsub)

--ws-origins=[URL]
Specify Origin header values allowed to connect. Special options: "all", "none". (default: parity://*,chrome
-extension://*,moz-extension://*)

--ws-hosts=[HOSTS]
List of allowed Host header values. This option will validate the Host header sent by the browser, it is
additional security against some attack vectors. Special options: "all", "none". (default: none)

API and console options – IPC:
--no-ipc
Disable JSON-RPC over IPC service.

--ipc-path=[PATH]
Specify custom path for JSON-RPC over IPC service. (default: \\.\pipe\jsonrpc.ipc)

--ipc-apis=[APIS]
Specify custom API set available via JSON-RPC over IPC. (default:
web3,eth,pubsub,net,parity,parity_pubsub,parity_accounts,traces,rpc,shh,shh_pubsub)

API and console options – Dapps:
--no-dapps
Disable the Dapps server (e.g. status page).

--dapps-path=[PATH]
Specify directory where dapps should be installed. (default: $BASE/dapps)

API and console options – IPFS:
--ipfs-api
Enable IPFS-compatible HTTP API.

--ipfs-api-port=[PORT]
Configure on which port the IPFS HTTP API should listen. (default: 5001)

--ipfs-api-interface=[IP]
Specify the hostname portion of the IPFS API server, IP should be an interface's IP address or local. (default:
local)

--ipfs-api-hosts=[HOSTS]
List of allowed Host header values. This option will validate the Host header sent by the browser, it is
additional security against some attack vectors. Special options: "all", "none". (default: none)

--ipfs-api-cors=[URL]
Specify CORS header for IPFS API responses. Special options: "all", "none". (default: none)

Secret store options:
--no-secretstore
Disable Secret Store functionality.

--no-secretstore-http
Disable Secret Store HTTP API.

--no-acl-check
Disable ACL check (useful for test environments).

--no-secretstore-auto-migrate
Do not run servers set change session automatically when servers set changes. This option has no effect when
servers set is read from configuration file.

--secretstore-contract=[SOURCE]
Secret Store Service contract address source: none, registry (contract address is read from registry) or
address. (default: none)

--secretstore-nodes=[NODES]
Comma-separated list of other secret store cluster nodes in form NODE_PUBLIC_KEY_IN_HEX@NODE_IP_ADDR:NODE_PORT.
(default: )

--secretstore-interface=[IP]
Specify the hostname portion for listening to Secret Store Key Server internal requests, IP should be an
interface's IP address, or local. (default: local)

--secretstore-port=[PORT]
Specify the port portion for listening to Secret Store Key Server internal requests. (default: 8083)

--secretstore-http-interface=[IP]
Specify the hostname portion for listening to Secret Store Key Server HTTP requests, IP should be an interface's
IP address, or local. (default: local)

--secretstore-http-port=[PORT]
Specify the port portion for listening to Secret Store Key Server HTTP requests. (default: 8082)

--secretstore-path=[PATH]
Specify directory where Secret Store should save its data. (default: $BASE/secretstore)

--secretstore-secret=[SECRET]
Hex-encoded secret key of this node.

--secretstore-admin=[PUBLIC]
Hex-encoded public key of secret store administrator.

Sealing/Mining options:
--force-sealing
Force the node to author new blocks as if it were always sealing/mining.

--reseal-on-uncle
Force the node to author new blocks when a new uncle block is imported.

--remove-solved
Move solved blocks from the work package queue instead of cloning them. This gives a slightly faster import
speed, but means that extra solutions submitted for the same work package will go unused.

--refuse-service-transactions
Always refuse service transactions.

--infinite-pending-block
Pending block will be created with maximal possible gas limit and will execute all transactions in the queue.
Note that such block is invalid and should never be attempted to be mined.

--no-persistent-txqueue
Don't save pending local transactions to disk to be restored whenever the node restarts.

--stratum
Run Stratum server for miner push notification.

--reseal-on-txs=[SET]
Specify which transactions should force the node to reseal a block. SET is one of: none - never reseal on new
transactions; own - reseal only on a new local transaction; ext - reseal only on a new external transaction; all
- reseal on all new transactions. (default: own)

--reseal-min-period=[MS]
Specify the minimum time between reseals from incoming transactions. MS is time measured in milliseconds.
(default: 2000)

--reseal-max-period=[MS]
Specify the maximum time since last block to enable force-sealing. MS is time measured in milliseconds.
(default: 120000)

--work-queue-size=[ITEMS]
Specify the number of historical work packages which are kept cached lest a solution is found for them later.
High values take more memory but result in fewer unusable solutions. (default: 20)

--relay-set=[SET]
Set of transactions to relay. SET may be: cheap - Relay any transaction in the queue (this may include invalid
transactions); strict - Relay only executed transactions (this guarantees we don't relay invalid transactions,
but means we relay nothing if not mining); lenient - Same as strict when mining, and cheap when not. (default:
cheap)

--usd-per-tx=[USD]
Amount of USD to be paid for a basic transaction. The minimum gas price is set accordingly. (default: 0.0001)

--usd-per-eth=[SOURCE]
USD value of a single ETH. SOURCE may be either an amount in USD, a web service or 'auto' to use each web
service in turn and fallback on the last known good value. (default: auto)

--price-update-period=[T]
T will be allowed to pass between each gas price update. T may be daily, hourly, a number of seconds, or a time
string of the form "2 days", "30 minutes" etc.. (default: hourly)

--gas-floor-target=[GAS]
Amount of gas per block to target when sealing a new block. (default: 4700000)

--gas-cap=[GAS]
A cap on how large we will raise the gas limit per block due to transaction volume. (default: 6283184)

--tx-queue-mem-limit=[MB]
Maximum amount of memory that can be used by the transaction queue. Setting this parameter to 0 disables
limiting. (default: 2)

--tx-queue-size=[LIMIT]
Maximum amount of transactions in the queue (waiting to be included in next block). (default: 8192)

--tx-queue-gas=[LIMIT]
Maximum amount of total gas for external transactions in the queue. LIMIT can be either an amount of gas or
'auto' or 'off'. 'auto' sets the limit to be 20x the current block gas limit. (default: off)

--tx-queue-strategy=[S]
Prioritization strategy used to order transactions in the queue. S may be: gas - Prioritize txs with low gas
limit; gas_price - Prioritize txs with high gas price; gas_factor - Prioritize txs using gas price and gas limit
ratio. (default: gas_price)

--tx-queue-ban-count=[C]
Number of times maximal time for execution (--tx-time-limit) can be exceeded before banning
sender/recipient/code. (default: 1)

--tx-queue-ban-time=[SEC]
Banning time (in seconds) for offenders of specified execution time limit. Also number of offending actions have
to reach the threshold within that time. (default: 180)

--stratum-interface=[IP]
Interface address for Stratum server. (default: local)

--stratum-port=[PORT]
Port for Stratum server to listen on. (default: 8008)

--min-gas-price=[STRING]
Minimum amount of Wei per GAS to be paid for a transaction to be accepted for mining. Overrides --usd-per-tx.

--gas-price-percentile=[PCT]
Set PCT percentile gas price value from last 100 blocks as default gas price when sending transactions.
(default: 50)

--author=[ADDRESS]
Specify the block author (aka "coinbase") address for sending block rewards from sealed blocks. NOTE: MINING
WILL NOT WORK WITHOUT THIS OPTION.

--engine-signer=[ADDRESS]
Specify the address which should be used to sign consensus messages and issue blocks. Relevant only to non-PoW
chains.

--tx-gas-limit=[GAS]
Apply a limit of GAS as the maximum amount of gas a single transaction may have for it to be mined.

--tx-time-limit=[MS]
Maximal time for processing single transaction. If enabled senders/recipients/code of transactions offending the
limit will be banned from being included in transaction queue for 180 seconds.

--extra-data=[STRING]
Specify a custom extra-data for authored blocks, no more than 32 characters.

--notify-work=[URLS]
URLs to which work package notifications are pushed. URLS should be a comma-delimited list of HTTP URLs.

--stratum-secret=[STRING]
Secret for authorizing Stratum server for peers.

Internal Options:
--can-restart
Executable will auto-restart if exiting with 69

Miscellaneous options:
--no-color
Don't use terminal color codes in output.

-v, --version
Show information about version.

--no-config
Don't load a configuration file.

--ntp-servers=[HOSTS]
Comma separated list of NTP servers to provide current time (host:port). Used to verify node health. Parity uses
pool.ntp.org NTP servers; consider joining the pool: http://www.pool.ntp.org/join.html (default:
0.parity.pool.ntp.org:123,1.parity.pool.ntp.org:123,2.parity.pool.ntp.org:123,3.parity.pool.ntp.org:123)

-l, --logging=[LOGGING]
Specify the logging level. Must conform to the same format as RUST_LOG.

--log-file=[FILENAME]
Specify a filename into which logging should be appended.

Footprint options:
--fast-and-loose
Disables DB WAL, which gives a significant speed up but means an unclean exit is unrecoverable.

--scale-verifiers
Automatically scale amount of verifier threads based on workload. Not guaranteed to be faster.

--tracing=[BOOL]
Indicates if full transaction tracing should be enabled. Works only if client had been fully synced with tracing
enabled. BOOL may be one of auto, on, off. auto uses last used value of this option (off if it does not exist).
(default: auto)

--pruning=[METHOD]
Configure pruning of the state/storage trie. METHOD may be one of auto, archive, fast: archive - keep all state
trie data. No pruning. fast - maintain journal overlay. Fast but 50MB used. auto - use the method most recently
synced or default to fast if none synced. (default: auto)

--pruning-history=[NUM]
Set a minimum number of recent states to keep when pruning is active. (default: 64)

--pruning-memory=[MB]
The ideal amount of memory in megabytes to use to store recent states. As many states as possible will be kept
within this limit, and at least --pruning-history states will always be kept. (default: 32)

--cache-size-db=[MB]
Override database cache size. (default: 128)

--cache-size-blocks=[MB]
Specify the prefered size of the blockchain cache in megabytes. (default: 8)

--cache-size-queue=[MB]
Specify the maximum size of memory to use for block queue. (default: 40)

--cache-size-state=[MB]
Specify the maximum size of memory to use for the state cache. (default: 25)

--db-compaction=[TYPE]
Database compaction type. TYPE may be one of: ssd - suitable for SSDs and fast HDDs; hdd - suitable for slow
HDDs; auto - determine automatically. (default: auto)

--fat-db=[BOOL]
Build appropriate information to allow enumeration of all accounts and storage keys. Doubles the size of the
state database. BOOL may be one of on, off or auto. (default: auto)

--cache-size=[MB]
Set total amount of discretionary memory to use for the entire system, overrides other cache and queue options.

--num-verifiers=[INT]
Amount of verifier threads to use or to begin with, if verifier auto-scaling is enabled.

Import/export options:
--no-seal-check
Skip block seal check.

Snapshot options:
--no-periodic-snapshot
Disable automated snapshots which usually occur once every 10000 blocks.

Virtual Machine options:
--jitvm
Enable the JIT VM.

Whisper options:
--whisper
Enable the Whisper network.

--whisper-pool-size=[MB]
Target size of the whisper message pool in megabytes. (default: 10)

Legacy options:
--warp
Does nothing; warp sync is enabled by default.

--dapps-apis-all
Dapps server is merged with RPC server. Use --jsonrpc-apis.

--geth
Run in Geth-compatibility mode. Sets the IPC path to be the same as Geth's. Overrides the --ipc-path and
--ipcpath options. Alters RPCs to reflect Geth bugs. Includes the personal_ RPC by default.

--testnet
Testnet mode. Equivalent to --chain testnet. Overrides the --keys-path option.

--import-geth-keys
Attempt to import keys from Geth client.

--ipcdisable
Equivalent to --no-ipc.

--ipc-off
Equivalent to --no-ipc.

--nodiscover
Equivalent to --no-discovery.

-j, --jsonrpc
Does nothing; JSON-RPC is on by default now.

--jsonrpc-off
Equivalent to --no-jsonrpc.

-w, --webapp
Does nothing; dapps server is on by default now.

--dapps-off
Equivalent to --no-dapps.

--rpc
Does nothing; JSON-RPC is on by default now.

--dapps-port=[PORT]
Dapps server is merged with RPC server. Use --jsonrpc-port.

--dapps-interface=[IP]
Dapps server is merged with RPC server. Use --jsonrpc-interface.

--dapps-hosts=[HOSTS]
Dapps server is merged with RPC server. Use --jsonrpc-hosts.

--dapps-cors=[URL]
Dapps server is merged with RPC server. Use --jsonrpc-cors.

--dapps-user=[USERNAME]
Dapps server authentication has been removed.

--dapps-pass=[PASSWORD]
Dapps server authentication has been removed.

--datadir=[PATH]
Equivalent to --base-path PATH.

--networkid=[INDEX]
Equivalent to --network-id INDEX.

--peers=[NUM]
Equivalent to --min-peers NUM.

--nodekey=[KEY]
Equivalent to --node-key KEY.

--rpcaddr=[IP]
Equivalent to --jsonrpc-interface IP.

--rpcport=[PORT]
Equivalent to --jsonrpc-port PORT.

--rpcapi=[APIS]
Equivalent to --jsonrpc-apis APIS.

--rpccorsdomain=[URL]
Equivalent to --jsonrpc-cors URL.

--ipcapi=[APIS]
Equivalent to --ipc-apis APIS.

--ipcpath=[PATH]
Equivalent to --ipc-path PATH.

--gasprice=[WEI]
Equivalent to --min-gas-price WEI.

--etherbase=[ADDRESS]
Equivalent to --author ADDRESS.

--extradata=[STRING]
Equivalent to --extra-data STRING.

--cache=[MB]
Equivalent to --cache-size MB.

Parity 钱包启动配置的更多相关文章

  1. ABP(现代ASP.NET样板开发框架)系列之5、ABP启动配置

    点这里进入ABP系列文章总目录 基于DDD的现代ASP.NET开发框架--ABP系列之5.ABP启动配置 ABP是“ASP.NET Boilerplate Project (ASP.NET样板项目)” ...

  2. ABP框架 - 启动配置

    文档目录 本节内容: 配置ABP 替换内置服务 配置模块 为一个模块创建配置 ABP在启动时,提供基础框架和模型来配置和模块化. 置ABP 在预初始化事件中进行配置,示例: kid1412注:XmlL ...

  3. ABP理论学习之启动配置

    返回总目录 本篇目录 配置ABP 配置模块 为模块创建配置 为了在应用启动时配置ABP和模块,ABP提供了一个基础设施. 配置ABP 配置ABP是在模块的PreInitialize事件中完成的.下面的 ...

  4. 【推荐】CentOS安装Tomcat-7.0.57+启动配置+安全配置+性能配置

    注:以下所有操作均在CentOS 6.5 x86_64位系统下完成. #准备工作# 在安装Tomcat之前,请确保已经安装了JDK-1.7环境,具体见<CentOS安装JDK-1.7>. ...

  5. 基于DDD的.NET开发框架 - ABP启动配置

    返回ABP系列 ABP是“ASP.NET Boilerplate Project (ASP.NET样板项目)”的简称. ASP.NET Boilerplate是一个用最佳实践和流行技术开发现代WEB应 ...

  6. 适合最新版docker自定义启动配置

    docker不断发布新版本,以前默认的在 /etc/default/docker里修改,但是新版已经不推荐了 注意: 一些文章推荐在 /lib/systemd/system/docker.servic ...

  7. MongoDB启动配置等

    目录: 一.mongoDB 启动配置 二.导出,导入,运行时备份 三.Fsync锁,数据修复 四.用户管理,安全认证 一.启动项 mongod --help C:\Windows\system32&g ...

  8. 14.6.1 InnoDB Startup Configuration 启动配置

    14.6.1 InnoDB Startup Configuration 启动配置 首先描述关于InnoDB 配置设计数据库文件,日志文件,page size 和内存buffer 的配置. 推荐你定义数 ...

  9. ABP启动配置

    ABP启动配置   返回ABP系列 ABP是“ASP.NET Boilerplate Project (ASP.NET样板项目)”的简称. ASP.NET Boilerplate是一个用最佳实践和流行 ...

随机推荐

  1. TADOTABLE 永久字段的顺序 和 AppendRecord

    AppendRecord 方法,添加记录的字段到数据库里时,是按照IDE里永久字段的顺序,不是数据库表里的字段顺序. 自动编号 字段,以nil为值. 日期时间 字段,直接now 写法

  2. python字典{}大括号

    #字典 info = { 'name1':'jack', 'name2':'rose', 'name3':'tom', 'name4':'jerry', 'name5':'james' } info[ ...

  3. 50个必备常用的jQuery代码段

    1. 如何修改jQuery默认编码(例如默认UTF-8改成改GB2312): $.ajaxSetup({ ajaxSettings:{ contentType:"application/x- ...

  4. 在WisOne平台上学习TypeScript

    TypeScript是微软公司推出的开源的类型化脚本语言,目的是用于为弱类型的javaScript提供强类型的识别和感知功能,同时它提供了类.接口.继承等相关在javaScript中不容易实现的功能, ...

  5. Eclipse SVN 使用教程

    Eclipse SVN 使用教程 做好以上的准备后打开Eclipse编译器,点击编译器右上角的Open Perspective 打开SVN资源库界面,新建一个资源库 选择资源库的位置,这里我们就用刚才 ...

  6. Flume-NG源码阅读之Interceptor(原创)

    有的时候希望通过Flume将读取的文件再细分存储,比如讲source的数据按照业务类型分开存储,具体一点比如类似:将source中web.wap.media等的内容分开存储:比如丢弃或修改一些数据.这 ...

  7. CTF之栅栏密码

    栅栏密码是比较常见的加密方式之一,其原理是将一组明文分成N组,将每一组的第一个明文取出按照顺序组成一串密文,并将这段密文附在第一段密文之后,以此类推 例如: 分了两组,即秘钥为2: 明文:THERE ...

  8. hive 分区表

    hive中创建分区表没有什么复杂的分区类型(范围分区.列表分区.hash分区.混合分区等).分区列也不是表中的一个实际的字段,而是一个或者多个伪列.意思是说在表的数据文件中实际上并不保存分区列的信息与 ...

  9. day16 python学习 递归

    初识递归 递归的定义——在一个函数里再调用这个函数本身 现在我们已经大概知道刚刚讲的story函数做了什么,就是在一个函数里再调用这个函数本身,这种魔性的使用函数的方式就叫做递归. 刚刚我们就已经写了 ...

  10. wcat 进行iis 压力测试

    如何建立起WCAT Microsoft的Web容量分析工具(WCAT) 是测试你的客户-服务器网络配置的必备工具.这个工具在你的网络上对多种工作量的场景进行仿真,允许你确定你的网络和服务器的最佳配置. ...