- 论坛徽章:
- 7
|
不知道:- #!/usr/bin/perl
- use 5.016;
- my $h = '大型机白皮书
- 大型机 缓冲区到缓冲区信用及其对 FICON 性能的影响
- 具有足够数量的缓冲区到缓冲区信用对于保持最高 FICON® 性能至关重要,尤其是在距离增加时。
- 但是,您需要多少缓冲区信用?
- 在本白皮书中,Brocade® 提供了';
- my $e = 'mainframe white PaPer
- MainfraMe Buffer-to-Buffer Credits and Their effect on FICON Performance
- Having a sufficient number of buffer-to-buffer credits is essential to maintaining maximum FICON® performance, especially as distance increases.
- But how many buffer credits do you need?
- In this paper, Brocade® provides';
- my @d;
- $h =~ s/\s*([A-Z]\S+\s+)(?{push @d,$1})//g;
- my $d = join '|', @d;
- $e =~ s/\s+$d/ /g;
- say $e;
- say $h;
复制代码 |
|