Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(348)

Issue 1270063003: Make the rest of the services have a similar raw/user interface structure. (Closed)

Created:
5 years, 4 months ago by iannucci
Modified:
5 years, 4 months ago
CC:
chromium-reviews
Base URL:
https://github.com/luci/gae.git@add_datastore
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Make the rest of the services have a similar raw/user interface structure. Also implement missing functionality from taskqueue/memcache in the memory implementation. R=dnj@chromium.org, estaab@chromium.org, tandrii@chromium.org, vadimsh@chromium.org BUG= Committed: https://github.com/luci/gae/commit/357724b6ecfae313081072c5e6a4e3a1c71bce66

Patch Set 1 #

Total comments: 60

Patch Set 2 : address comments #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1126 lines, -799 lines) Patch
M doc.go View 2 chunks +5 lines, -3 lines 0 comments Download
M filter/count/count_test.go View 2 chunks +6 lines, -6 lines 0 comments Download
M filter/count/mc.go View 3 chunks +17 lines, -33 lines 0 comments Download
M filter/count/tq.go View 1 chunk +10 lines, -40 lines 0 comments Download
M filter/featureBreaker/mc.go View 2 chunks +14 lines, -58 lines 0 comments Download
M filter/featureBreaker/tq.go View 1 chunk +10 lines, -58 lines 0 comments Download
M impl/dummy/dummy.go View 2 chunks +18 lines, -29 lines 0 comments Download
M impl/dummy/dummy_test.go View 2 chunks +6 lines, -5 lines 0 comments Download
M impl/memory/memcache.go View 1 6 chunks +217 lines, -80 lines 0 comments Download
M impl/memory/memcache_test.go View 8 chunks +74 lines, -47 lines 0 comments Download
M impl/memory/taskqueue.go View 1 9 chunks +86 lines, -88 lines 0 comments Download
M impl/memory/taskqueue_data.go View 1 7 chunks +18 lines, -21 lines 0 comments Download
M impl/memory/taskqueue_test.go View 9 chunks +160 lines, -170 lines 0 comments Download
M impl/prod/memcache.go View 5 chunks +46 lines, -45 lines 0 comments Download
M impl/prod/taskqueue.go View 5 chunks +40 lines, -57 lines 0 comments Download
M service/datastore/context.go View 2 chunks +4 lines, -4 lines 0 comments Download
M service/memcache/context.go View 2 chunks +22 lines, -22 lines 0 comments Download
M service/memcache/interface.go View 1 1 chunk +44 lines, -2 lines 0 comments Download
A service/memcache/memcache.go View 1 chunk +106 lines, -0 lines 0 comments Download
A service/memcache/raw_interface.go View 1 1 chunk +29 lines, -0 lines 0 comments Download
M service/memcache/types.go View 1 1 chunk +4 lines, -2 lines 0 comments Download
M service/taskqueue/context.go View 2 chunks +23 lines, -23 lines 0 comments Download
M service/taskqueue/interface.go View 1 chunk +28 lines, -6 lines 0 comments Download
A service/taskqueue/raw_interface.go View 1 1 chunk +32 lines, -0 lines 0 comments Download
A service/taskqueue/taskqueue.go View 1 chunk +82 lines, -0 lines 0 comments Download
M service/taskqueue/types.go View 1 1 chunk +25 lines, -0 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 9 (1 generated)
iannucci
5 years, 4 months ago (2015-08-03 20:51:12 UTC) #1
dnj
https://codereview.chromium.org/1270063003/diff/1/impl/memory/memcache.go File impl/memory/memcache.go (right): https://codereview.chromium.org/1270063003/diff/1/impl/memory/memcache.go#newcode77 impl/memory/memcache.go:77: var exp time.Duration Maybe: exp := i.Expiration() if exp ...
5 years, 4 months ago (2015-08-03 22:37:26 UTC) #2
iannucci
https://codereview.chromium.org/1270063003/diff/1/impl/memory/memcache.go File impl/memory/memcache.go (right): https://codereview.chromium.org/1270063003/diff/1/impl/memory/memcache.go#newcode77 impl/memory/memcache.go:77: var exp time.Duration On 2015/08/03 22:37:25, dnj wrote: > ...
5 years, 4 months ago (2015-08-04 01:21:21 UTC) #3
dnj (Google)
https://codereview.chromium.org/1270063003/diff/1/impl/memory/memcache.go File impl/memory/memcache.go (right): https://codereview.chromium.org/1270063003/diff/1/impl/memory/memcache.go#newcode111 impl/memory/memcache.go:111: m.items = map[string]*mcItem{} On 2015/08/04 01:21:20, iannucci wrote: > ...
5 years, 4 months ago (2015-08-04 03:48:03 UTC) #5
iannucci
https://codereview.chromium.org/1270063003/diff/1/impl/memory/memcache.go File impl/memory/memcache.go (right): https://codereview.chromium.org/1270063003/diff/1/impl/memory/memcache.go#newcode111 impl/memory/memcache.go:111: m.items = map[string]*mcItem{} On 2015/08/04 03:48:03, dnj (Google) wrote: ...
5 years, 4 months ago (2015-08-04 03:58:33 UTC) #6
iannucci
On 2015/08/04 03:58:33, iannucci wrote: > https://codereview.chromium.org/1270063003/diff/1/impl/memory/memcache.go > File impl/memory/memcache.go (right): > > https://codereview.chromium.org/1270063003/diff/1/impl/memory/memcache.go#newcode111 > ...
5 years, 4 months ago (2015-08-04 17:46:10 UTC) #7
dnj
lgtm https://codereview.chromium.org/1270063003/diff/1/impl/memory/memcache.go File impl/memory/memcache.go (right): https://codereview.chromium.org/1270063003/diff/1/impl/memory/memcache.go#newcode111 impl/memory/memcache.go:111: m.items = map[string]*mcItem{} On 2015/08/04 03:58:33, iannucci wrote: ...
5 years, 4 months ago (2015-08-04 18:01:16 UTC) #8
iannucci
5 years, 4 months ago (2015-08-04 18:09:27 UTC) #9
Message was sent while issue was closed.
Committed patchset #2 (id:20001) manually as
357724b6ecfae313081072c5e6a4e3a1c71bce66 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698