GithubHelp home page GithubHelp logo

malre / appengine-go Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 680 KB

Automatically exported from code.google.com/p/appengine-go

License: Other

Go 97.32% HTML 1.80% CSS 0.26% Shell 0.23% Python 0.39%

appengine-go's People

Contributors

dsymonds avatar nigeltao avatar

Stargazers

 avatar

Watchers

 avatar

appengine-go's Issues

Excessive Garbage/Allocs on Datastore Put/Get

A simple benchmark (see attached) which puts and gets random binary data 
generates 10x allocations/garbage per cycle. This undermines my efforts to 
reduce garbage in the application proper.

Can a future release reduce internal garbage generation using internal memory 
recycling possibly with tunable parameters?


Benchmark_Cycle INFO     2014-03-09 10:54:21,137 devappserver2.py:675]
etc.
       1    1102063100 ns/op    11667160 B/op        372 allocs/op
ok      play.test/ae/allocplay  8.566s

Original issue reported on code.google.com by [email protected] on 9 Mar 2014 at 11:05

Attachments:

datastore overview talks about exceptions

http://code.google.com/appengine/docs/go/datastore/overview.html

"Note: The first read of an entity group in an XG transaction may throw a 
exception if there is a conflict with other transactions accessing that entity 
group. This means that an XG transaction that performs only reads can fail with 
a concurrency exception."

Since Go does not have exceptions, the meaning of this is not clear.

Original issue reported on code.google.com by [email protected] on 2 Jan 2012 at 2:16

app.yaml skip_files description lists incorrect default

http://code.google.com/appengine/docs/go/config/appconfig.html
says the default skip_files is
skip_files: |
 ^(.*/)?(
 (app\.yaml)|
 (app\.yml)|
 (index\.yaml)|
 (index\.yml)|
 (#.*#)|
 (.*~)|
 (.*\.go)|
 (.*/RCS/.*)|
 (\..*)|
 )$
or equivalently
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.go    <<<
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?.*\.bak$

but that is clearly incorrect, since it would exclude all Go files
(see the like I marked with <<< line above).

More generally, there's no reason I'd ever want to remove from
the list of defaults, whatever it is.  I should be able to write

skip_files:
- ^mypattern$

and have it get added to the default list, whatever it is,
instead of having to copy a binary blob into my app.yaml file.

Original issue reported on code.google.com by [email protected] on 1 Jan 2012 at 8:25

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.