node.jsも、下位層のV8オプションを提供します。これらのオプションはガベージコレクションやヒープアルゴのような非常に低いレイヤーです。実稼働環境でノードv8オプションを使用するのは安全ですか?
# node --v8-options
Options:
--harmony_typeof (enable harmony semantics for typeof)
type: bool default: false
--harmony_proxies (enable harmony proxies)
type: bool default: false
--harmony_weakmaps (enable harmony weak maps)
type: bool default: false
--harmony_block_scoping (enable harmony block scoping)
type: bool default: false
私はこれらのほとんどが頻繁に使用するためのものではないことがわかりますが。
私はいくつかのオプションが役に立つと思う場合、V8エンジンのリリースアップグレードでコード変更の心配なしにそれらを安全に使用できますか?