- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个执行 pgrep
的 perl 脚本,如下所示:
use warnings;
my @instance = `pgrep -fl varnish`;
foreach my $line (@instance) {
my $ip;
my $port;
my $pid;
my $pidfile;
my $fileconfiguration;
my $bakendhost;
my $bakendport;
my $sharememory;
my $user;
chomp $line;
if ($line =~ m/-T\s+([0-9]+.*)+:(\d+)\s+/) {
$ip = $1;
$port = $2;
}
}
但是当启动脚本时出现以下错误/警告:
Complex regular subexpression recursion limit (32766) exceeded at /home/k.sewnundun/test.pl line 16.
Complex regular subexpression recursion limit (32766) exceeded at /home/k.sewnundun/test.pl line 16.
调试如下:
Loading DB routines from perl5db.pl version 1.32
Editor support available.
Enter h or `h h' for help, or `man perldebug' for more help.
main::(/home/k.sewnundun/test.pl:3):
3: my @instance = `pgrep -fl varnish`;
DB<1> n
main::(/home/k.sewnundun/test.pl:4):
4: foreach my $line (@instance) {
DB<1> n
main::(/home/k.sewnundun/test.pl:5):
5: my $ip;
DB<1> print $line
3066 /opt/rh/varnish4/root/usr/sbin/varnishd -P /var/run-daemon/varnishd-toto4.pid -a 0.0.0.0:8080 -f /etc/varnish/etc/toto4/toto4-current.vcl -u varnish4-toto4 -g varnish4-toto4 -l 80M -T 0.0.0.0:38080 -p thread_pool_min=50 -p thread_pool_max=1000 -p thread_pool_timeout=120 -p vcl_dir=/etc/varnish/etc/toto4 -n /home/varnish/toto4/working -s malloc, -S /etc/varnish/etc/toto4/toto4.secret
DB<2> n
main::(/home/k.sewnundun/test.pl:6):
6: my $port;
DB<2> n
main::(/home/k.sewnundun/test.pl:7):
7: my $pid;
DB<2> n
main::(/home/k.sewnundun/test.pl:8):
8: my $pidfile;
DB<2> n
main::(/home/k.sewnundun/test.pl:9):
9: my $fileconfiguration;
DB<2> n
main::(/home/k.sewnundun/test.pl:10):
10: my $bakendhost;
DB<2> n
main::(/home/k.sewnundun/test.pl:11):
11: my $bakendport;
DB<2> n
main::(/home/k.sewnundun/test.pl:12):
12: my $sharememory;
DB<2> n
main::(/home/k.sewnundun/test.pl:13):
13: my $user;
DB<2> n
main::(/home/k.sewnundun/test.pl:15):
15: chomp $line;
DB<2> n
main::(/home/k.sewnundun/test.pl:16):
16: if ($line =~ m/-T\s+([0-9]+.*)+:(\d+)\s+/) {
DB<2> n
main::(/home/k.sewnundun/test.pl:17):
17: $ip = $1;
DB<2> n
main::(/home/k.sewnundun/test.pl:18):
18: $port = $2;
DB<2> n
main::(/home/k.sewnundun/test.pl:5):
5: my $ip;
DB<2> print $line
3078 /opt/rh/varnish4/root/usr/sbin/varnishd -P /var/run-daemon/varnishd-toto4.pid -a 0.0.0.0:8080 -f /etc/varnish/etc/toto4/toto4-current.vcl -u varnish4-toto4 -g varnish4-toto4 -l 80M -T 0.0.0.0:38080 -p thread_pool_min=50 -p thread_pool_max=1000 -p thread_pool_timeout=120 -p vcl_dir=/etc/varnish/etc/toto4 -n /home/varnish/toto4/working -s malloc, -S /etc/varnish/etc/toto4/toto4.secret
DB<3> n
main::(/home/k.sewnundun/test.pl:6):
6: my $port;
DB<3> n
main::(/home/k.sewnundun/test.pl:7):
7: my $pid;
DB<3> n
main::(/home/k.sewnundun/test.pl:8):
8: my $pidfile;
DB<3> n
main::(/home/k.sewnundun/test.pl:9):
9: my $fileconfiguration;
DB<3> n
main::(/home/k.sewnundun/test.pl:10):
10: my $bakendhost;
DB<3> n
main::(/home/k.sewnundun/test.pl:11):
11: my $bakendport;
DB<3> n
main::(/home/k.sewnundun/test.pl:12):
12: my $sharememory;
DB<3> n
main::(/home/k.sewnundun/test.pl:13):
13: my $user;
DB<3> n
main::(/home/k.sewnundun/test.pl:15):
15: chomp $line;
DB<3> n
main::(/home/k.sewnundun/test.pl:16):
16: if ($line =~ m/-T\s+([0-9]+.*)+:(\d+)\s+/) {
DB<3> n
main::(/home/k.sewnundun/test.pl:17):
17: $ip = $1;
DB<3> n
main::(/home/k.sewnundun/test.pl:18):
18: $port = $2;
DB<3> n
main::(/home/k.sewnundun/test.pl:5):
5: my $ip;
DB<3> print $line
3200 /opt/rh/varnish4/root/usr/bin/varnishncsa -a -n toto4 -w /home/logs/varnish/toto4/access.log -D -P /var/run-daemon/varnishncsa-toto4.pid -F %{X-Forwarded-For}i %h %l %u %t "%r" %s %b "%{Referer}i" "%{User-agent}i"
DB<4> n
main::(/home/k.sewnundun/test.pl:6):
6: my $port;
DB<4> n
main::(/home/k.sewnundun/test.pl:7):
7: my $pid;
DB<4> n
main::(/home/k.sewnundun/test.pl:8):
8: my $pidfile;
DB<4> n
main::(/home/k.sewnundun/test.pl:9):
9: my $fileconfiguration;
DB<4> n
main::(/home/k.sewnundun/test.pl:10):
10: my $bakendhost;
DB<4> n
main::(/home/k.sewnundun/test.pl:11):
11: my $bakendport;
DB<4> n
main::(/home/k.sewnundun/test.pl:12):
12: my $sharememory;
DB<4> n
main::(/home/k.sewnundun/test.pl:13):
13: my $user;
DB<4> n
main::(/home/k.sewnundun/test.pl:15):
15: chomp $line;
DB<4> n
main::(/home/k.sewnundun/test.pl:16):
16: if ($line =~ m/-T\s+([0-9]+.*)+:(\d+)\s+/) {
DB<4> n
main::(/home/k.sewnundun/test.pl:5):
5: my $ip;
DB<4> print $line
9803 varnishd -P /var/run-daemon/varnishd-varnish.pid -a 0.0.0.0:80 -f /etc/varnish/varnish.com/varnish.vcl -u varnish-varnish -l 80M -T 127.0.0.1:33080 -w 200,500,120 -n /home/varnish/varnish/working -s malloc,1G -p user varnish-varnish -p acceptor_sleep_decay 0.9 -p acceptor_sleep_incr 0.001 -p acceptor_sleep_max 0.05 -p auto_restart on -p ban_lurker_sleep 0.0 -p between_bytes_timeout 60.0 -p cli_buffer 8192 -p cli_timeout 5 -p clock_skew 10 -p connect_timeout 0.4 -p critbit_cooloff 180.0 -p default_grace 10 -p default_ttl 120 -p diag_bitmap 0x0 -p esi_syntax 0 -p expiry_sleep 1.0 -p fetch_chunksize 128 -p first_byte_timeout 60.0 -p group varnish-varnish -p http_range_support off -p listen_depth 1024 -p log_hashstring off -p log_local_address off -p lru_interval 2 -p max_esi_depth 5 -p max_restarts 4 -p ping_interval 3 -p pipe_timeout 60 -p prefer_ipv6 off -p queue_max 100 -p rush_exponent 3 -p saintmode_threshold 10 -p send_timeout 600 -p sess_timeout 5 -p sess_workspace 16384 -p session_linger 50 -p session_max 10000 -p shm_reclen 255 -p shm_workspace 8192 -p syslog_cli_traffic on -p vcl_trace off -p vcl_dir -p waiter default
DB<5> n
main::(/home/k.sewnundun/test.pl:6):
6: my $port;
DB<5> n
main::(/home/k.sewnundun/test.pl:7):
7: my $pid;
DB<5> n
main::(/home/k.sewnundun/test.pl:8):
8: my $pidfile;
DB<5> n
main::(/home/k.sewnundun/test.pl:9):
9: my $fileconfiguration;
DB<5> main::(/home/k.sewnundun/test.pl:10):
10: my $bakendhost;
DB<5> n
main::(/home/k.sewnundun/test.pl:11):
11: my $bakendport;
DB<5> n
main::(/home/k.sewnundun/test.pl:12):
12: my $sharememory;
DB<5> n
main::(/home/k.sewnundun/test.pl:13):
13: my $user;
DB<5> n
main::(/home/k.sewnundun/test.pl:15):
15: chomp $line;
DB<5> n
main::(/home/k.sewnundun/test.pl:16):
16: if ($line =~ m/-T\s+([0-9]+.*)+:(\d+)\s+/) {
DB<5> n
Complex regular subexpression recursion limit (32766) exceeded at /home/k.sewnundun/test.pl line 16.
at /home/k.sewnundun/test.pl line 16
main::(/home/k.sewnundun/test.pl:17):
17: $ip = $1;
DB<5> q
可能是什么问题?谢谢
最佳答案
这是一个好兆头,表明您的正则表达式有误。正如评论中所指出的那样 - 你嵌套量词可能会导致问题,尤其是当匹配重叠时......(例如 .
也匹配 [0-9]
) .有几个人在评论中提到了这一点——特别是像 ([0-9]+.*)+
这样的东西——如果没有找到匹配项,你最终不得不回溯各种不同的组合字母/数字以确定是否存在匹配项。
如果您尝试类似 use re 'debug'
的操作并注意您的正则表达式如何开始运行大量的步骤来处理,您可能会看到它在起作用。
但是当您停止解析 pgrep
的输出,而是使用类似 Proc::ProcessTable
的东西时,这是一个有争议的问题:
#!/usr/bin/env perl
use strict;
use warnings;
use Data::Dumper;
use Proc::ProcessTable;
my $ps = Proc::ProcessTable -> new;
foreach my $proc ( grep { $_ -> {cmndline} =~ m/varnish/ } @{$ps->table} ) {
my %opts = $proc -> {cmndline} =~ m/\-(\w) (\S+)/g;
print Dumper $proc;
print Dumper \%opts;
my ( $IP, $port ) = split ( ':', $opts{'T'});
}
关于regex - 超过复杂正则子表达式递归限制 (32766),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34200336/
我之前发布过question已得到答复,但我也需要对此进行查询。我有一个包含这样数据的表结构(日期格式为 dd/mm/yyyy)。 ID Account Number Unit Ad
我正在使用 React Native Calendars 并尝试为议程组件构建我的数据。 预期的数据结构是(一个对象) { '2012-05-22': [{text: 'item 1 - any j
这个问题不太可能对任何 future 的访客有帮助;它只与一个较小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于全世界的互联网受众。如需帮助使此问题更广泛适用,visit the
两列城镇和优先级。 我需要对表进行排序,以便优先级=1的城镇排在第一位,并且不按名称 ASC 排序,而其余城镇则按名称 ASC 排序。 我该怎么做? 谢谢;) 更新 SELECT * FROM map
我有三个表“Hardware_model”、“Warehouse”和“Brand”,并且表以这种方式一起引用:Hardware_model 仓库Hardware_model 品牌 现在我要执行以下
我有一个 MySQL 表 (tbl_filters),包含 3 列:id、cat、val id 和 val 是数字,cat 是 varchar。每个 id 有多行。 我还有另一个包含多个列的表 (tb
我想获取字段的不同值,比方说:field1...这需要一个如下查询:“从表中选择不同的(字段1)” 但是,对于某些记录,field1 为空,并且还有另一列可以替代 field1,即 field2。对于
表 1 - 用户 id username items 1 Paul 1(0020);2(0001); 表 2 - 项目 id name 1 name_here 在我的用户的项目中,我输入了 2(000
我想连接同一个表 4 次以获取列的显示方式,我不确定是否可以在 1 个 SQL 语句中完成。 tbl_用户名 id username 1 Adam 2 Bob 3 Chris tbl_机
首先,我刚刚开始自己学习JS,没有任何编程经验,这意味着我仍然要了解这种出色的编程语言的基本构建模块。 我的问题与我编写的以下代码有关: let orderCount = 0; con
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 9 年前。 Improve t
我正在使用 XMAPP,MySQL 正在正常运行。在 phpMyAdmin 中,我不太明白这一点,所以我尝试在 PHP 中创建一个。使用此代码,它会告诉我数据库 benutzer。尽管我在 phpMy
是否有一种高效的算法可以找到平均度最大的子图(可能是图本身)? 最佳答案 The paper "Finding a Maximum-Density Subgraph" by Andrew Goldbe
目录 1、业务背景 2、场景分析 3、流程设计 1、业务流程 2、导入流程
我有 2 个表: 1) 包含自 1900 年 1 月 1 日以来所有日期的 Masterdates 表 2) Stockdata 表,其中包含表单中的股票数据 日期、交易品种、开盘价、最高价、最低价、
我有一个非常复杂的 UI,其状态栏不断变化,其中包含多种类型的状态消息,并且 UI 具有复杂的图表控件和已加载的指示性地理 map 。 现在这些小而复杂的区域的数据上下文具有同样复杂的 ViewMod
有人可以用简单的方式向我解释为什么常量在大 O 表示法中无关紧要吗?为什么添加常量时复杂性保持不变。这不是作业问题,我只是想更好地理解这一点。让我明白这个大 O 是为了看到一个函数在接近无穷大时的行为
我在 flex 搜索索引中有以下文档。 [{ "_index": "ten2", "_type": "documents", "_id": "c323c
我有一个以零碎的方式构建的 LINQ 查询,如下所示: var initialQuery = from item in MyContext where xxx == yyy select item;
我目前正在涉足 SQL,并且希望针对我所创建的问题获得一些帮助。 为了练习一些编程,我正在制作一个 IOU 应用程序。下面是我存储的表我的借条记录(忽略一些相关栏目)。该表允许用户说“嘿,你欠我 X
我是一名优秀的程序员,十分优秀!