Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
token
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wallet
token
Commits
29212966
Commit
29212966
authored
Apr 15, 2020
by
shajiaiming
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/optimize' into 'master'
Feature/optimize See merge request
!316
parents
1d83c108
f5c74fcf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
CoinController.php
api/controllers/CoinController.php
+2
-1
SecKillController.php
api/controllers/SecKillController.php
+6
-0
WalletCoinController.php
api/controllers/WalletCoinController.php
+3
-0
No files found.
api/controllers/CoinController.php
View file @
29212966
...
...
@@ -128,8 +128,9 @@ class CoinController extends BaseController
$limit
=
$request
->
post
(
'limit'
,
999
);
$platform_id
=
$request
->
post
(
'platform_id'
,
1
);
//默认币钱包
$recommend
=
$request
->
post
(
'recommend'
,
''
);
$type
=
$request
->
post
(
'type'
,
1
);
$chain
=
$request
->
post
(
'chain'
,
''
);
$condition
=
[
'platform_id'
=>
$platform_id
,
'type'
=>
1
];
$condition
=
[
'platform_id'
=>
$platform_id
,
'type'
=>
$type
];
if
(
$recommend
)
{
$condition
[
'recommend'
]
=
$recommend
;
}
...
...
api/controllers/SecKillController.php
View file @
29212966
...
...
@@ -10,6 +10,9 @@ class SecKillController extends BaseController
{
public
function
actionIndex
()
{
echo
hash
(
141414
,
'The quick brown fox jumped over the lazy dog.'
);
exit
;
$num
=
$this
->
randomFloat
(
1
,
3
);
$expire
=
5
;
$nowTime
=
time
();
...
...
@@ -32,7 +35,10 @@ class SecKillController extends BaseController
goto
doEnd
;
}
//$is_locked = $redis->set($lock_key, $expTime, 'ex', 5, 'nx');
$is_locked
=
$redis
->
setnx
(
$lock_key
,
$expTime
);
if
(
!
$is_locked
)
{
$this
->
msg
=
'ahaaa, locked'
;
$this
->
code
=
-
1
;
...
...
api/controllers/WalletCoinController.php
View file @
29212966
...
...
@@ -2,6 +2,7 @@
namespace
api\controllers
;
use
common\models\psources\CoinPlatformWithHold
;
use
Yii
;
use
api\base\BaseController
;
use
common\business\ExchangeBusiness
;
...
...
@@ -58,6 +59,8 @@ class WalletCoinController extends BaseController
->
one
();
}
if
(
!
empty
(
$model
))
{
$lock
=
CoinPlatformWithHold
::
find
()
->
select
(
'lock'
)
->
where
([
'platform'
=>
$model
[
'platform'
]])
->
asArray
()
->
one
();
$model
[
'lock'
]
=
(
int
)
$lock
[
'lock'
];
$this
->
data
=
array_merge
(
$this
->
data
,
[
$model
]);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment