gpt4 book ai didi

perl - 这种 Canary::Stability 咆哮是合理的担忧吗?

转载 作者:行者123 更新时间:2023-12-03 15:22:06 24 4
gpt4 key购买 nike

我今天正在安装新的 CPAN 模块,结果发现 JSON::XS 模块显示了它自己的警告/咆哮,关于在 5.22 以上的 Perls 中使用它。似乎作者厌倦了据称在那之后引入 Perl 的向后不兼容的更改,并决定制作一个模块专门用于警告人们潜在的不兼容性,警告 Perl 超过 5.22,并促进 Perl 的一个单独分支致力于稳定性.

作为一个不起眼的普通用户,我不确定自己应该有多警觉。例如:仅仅是这个用户/模块在提示,还是比这更大? 5.22 之后的 Perl 向后兼容性是否存在已知的严重问题?

我想这是一个有点主观的问题,但通过这样做,作者已经把它变成了每个人的问题(或者:已经把稳定性分支变成了每个人的解决方案,这取决于你站在哪一边)。因为我需要为我正在从事的大型移植项目选择 Perl 版本,所以这对我来说是一个非常重要的问题。

这是警告:

Canary::Stability COMPATIBILITY AND SUPPORT CHECK

Hi!

I do my best to provide predictable and reliable software.

However, in recent releases, P5P (who maintain perl) have been introducing regressions that are sometimes subtle and at other times catastrophic, often for personal preferences with little or no concern for existing code, most notably CPAN.

For this reason, it has become very hard for me to maintain the level of reliability and support I have committed myself to in the past, at least with some perl versions: I simply can't keep up working around new bugs or gratituous incompatibilities, and in turn you might suffer from unanticipated problems.

Therefore I have introduced a support and compatibility check, the results of which follow below, together with a FAQ and some recommendations.

This check is just to let you know that there might be a risk, so you can make judgement calls on how to proceed - it will not keep the module from installing or working.

The stability canary says: (nothing, it was driven away by harsh weather)

It seems you are running perl version 5.026000, likely the "official" or "standard" version. While there is nothing wrong with doing that, standard perl versions 5.022 and up are not supported by JSON::XS. While this might be fatal, it might also be all right - if you run into problems, you might want to downgrade your perl or switch to the stability branch.

If everything works fine, you can ignore this message.

Stability canary mini-FAQ:

Do I need to do anything? With luck, no. While some distributions are known to fail already, most should probably work. This message is here to alert you that your perl is not supported by JSON::XS, and if things go wrong, you either need to downgrade, or sidegrade to the stability variant of your perl version, or simply live with the consequences.

What is this canary thing? It's purpose is to check support status of JSON::XS with respect to your perl version.

What is this "stability branch"? It's a branch or fork of the official perl, by schmorp, to improve stability and compatibility with existing modules.

How can I skip this prompt on automated installs? Set PERL_CANARY_STABILITY_NOPROMPT=1 in your environment. More info is in the Canary::Stability manpage.

Long version of this FAQ: http://stableperl.schmorp.de/faq.html Stability Branch homepage: http://stableperl.schmorp.de/

最佳答案

p5p 是维护 Perl 的非正式团队,非常重视向后兼容性。 [1]他们在 perlpolicy 中有一个正式的政策。 .

让我们把 Canary::Stability 放到上下文中。

有问题的作者有许多模块使用未记录的 Perl 内部结构,这些内部结构可能会发生变化。使用这些内部结构对于实现模块的功能是必要的,但必须意识到这些内部结构可能会被破坏。

是的,p5p 已经改变了一些内部结构,破坏了作者的模块,但是 p5p 会检查 CPAN 上的哪些模块它们的更改会影响,并且 p5p 会在发布新版本的 Perl 之前为受影响的模块提供修复。 [2]

有问题的作者非常难以处理,他宁愿花时间站在立场上,也不愿维护他的模块或使用 p5p 来公开他需要访问的内部结构。

例如,与他打交道的困难导致人们将 JSON::XS fork 为 Cpanel::JSON::XS。问题之一是他宁愿反对线程而不是让 JSON::XS 线程安全。

例如,CPAN 提供了一种指定错误报告应在何处提交的方法。作者宁愿您直接给他发电子邮件,而不是使用默认的报告错误的方式(CPAN 提供的错误跟踪器)。使用电子邮件而不是公共(public)错误跟踪器缺乏可见性本身就是一个问题,但他拒绝在他的发行版中表明他希望如何被联系,从而加剧了这个问题。如果您敢通过 CPAN 错误跟踪器提交错误(他实际上表明您应该使用它),他会通过电子邮件向您发送准备好的咆哮,比您发布的更长。

  • 有过小问题,但他们从错误中吸取教训。例如,这就是实验性功能的产生方式。
  • 有一些“吸烟者”不断地针对 Perl 的开发分支“blead”运行 CPAN 上每个模块的测试套件。手动检查运行之间测试结果的差异,以查看它们是否是由 Perl 的更改引起的。如果是这样,则打开“Blead Breaks CPAN”(BBC)票。也许这是一个引入的错误。也许该模块正在做一些错误的事情。也许这是一个需要恢复的向后不兼容的更改(并且可能会引入弃用)。或者可能是需要向前推进的内部不向后兼容的更改,在这种情况下,它们将帮助损坏的模块。

    DarkPAN 中的模块(即不在 CPAN 上)显然没有从这些吸烟者那里获得与 CPAN 上的模块相同的支持水平。但是,如果您特别担心,您可以自由地针对 dev 分支或 dev 版本测试您的模块。
  • 关于perl - 这种 Canary::Stability 咆哮是合理的担忧吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46802396/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com