File tree 4 files changed +88
-3
lines changed
4 files changed +88
-3
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,16 @@ class HttpClient
41
41
];
42
42
43
43
/**
44
+ * Global options for request
45
+ *
46
+ * [
47
+ * 'method' => 'GET',
48
+ * 'data' => 'string|array',
49
+ * 'headers' => [key => value],
50
+ * 'cookies' => [key => value],
51
+ * 'settings' => [key => value],
52
+ * ]
53
+ *
44
54
* @var array
45
55
*/
46
56
private $ options = [];
Original file line number Diff line number Diff line change 2
2
3
3
namespace Swoft \Swlib ;
4
4
5
+ use InvalidArgumentException ;
6
+
5
7
/**
6
8
* Class MemFactory
7
9
*/
8
10
final class MemFactory
9
11
{
12
+ /**
13
+ * @var MemTable[]
14
+ */
15
+ private static $ tables = [];
16
+
17
+ /**
18
+ * @param string $name
19
+ * @param int $size
20
+ * @param array $columns
21
+ *
22
+ * @return MemTable
23
+ */
24
+ public static function create (string $ name , int $ size = 0 , array $ columns = []): MemTable
25
+ {
26
+ $ table = new MemTable ($ name , $ size , $ columns );
27
+
28
+ // Save instance
29
+ self ::$ tables [$ name ] = $ table ;
30
+ return $ table ;
31
+ }
32
+
33
+ /**
34
+ * @param string $name
35
+ *
36
+ * @return MemTable
37
+ */
38
+ public static function get (string $ name ): MemTable
39
+ {
40
+ if (isset (self ::$ tables [$ name ])) {
41
+ return self ::$ tables [$ name ];
42
+ }
43
+
44
+ throw new InvalidArgumentException ('The memory table instance is not exists ' );
45
+ }
46
+
47
+ /**
48
+ * @param string $name
49
+ * @param MemTable $table
50
+ */
51
+ public static function set (string $ name , MemTable $ table ): void
52
+ {
53
+ self ::$ tables [$ name ] = $ table ;
54
+ }
55
+
56
+ /**
57
+ * @param string $name
58
+ *
59
+ * @return bool
60
+ */
61
+ public static function del (string $ name ): bool
62
+ {
63
+ if (isset (self ::$ tables [$ name ])) {
64
+ unset(self ::$ tables [$ name ]);
65
+ return true ;
66
+ }
67
+
68
+ return false ;
69
+ }
70
+
71
+ /**
72
+ * Clear all tables
73
+ *
74
+ * @param bool $clearData
75
+ */
76
+ public static function clear (bool $ clearData = true ): void
77
+ {
78
+ foreach (self ::$ tables as $ name => $ table ) {
79
+ if ($ clearData ) {
80
+ $ table ->clear ();
81
+ }
10
82
83
+ unset(self ::$ tables [$ name ]);
84
+ }
85
+ }
11
86
}
Original file line number Diff line number Diff line change @@ -267,15 +267,15 @@ public function each(callable $fn): void
267
267
}
268
268
269
269
/**
270
- * clear /flush table data
270
+ * Clear /flush table data
271
271
*/
272
272
public function clear (): void
273
273
{
274
274
$ this ->flush ();
275
275
}
276
276
277
277
/**
278
- * clear /flush table data
278
+ * Clear /flush table data
279
279
*/
280
280
public function flush (): void
281
281
{
Original file line number Diff line number Diff line change 17
17
/**
18
18
* Class BenchTesting
19
19
*
20
- * from https://github.com/swoole/swoole-src/blob/master/benchmark/src/Base.php
20
+ * @link https://github.com/swoole/swoole-src/blob/master/benchmark/src/Base.php
21
21
*/
22
22
class SwooleBench
23
23
{
You can’t perform that action at this time.
0 commit comments