検索
ホームページデータベースmysql チュートリアルInterview with Joe Devon, Organizer of the Los Ang

The Los Angeles MongoDB User Group was founded in the summer of 2011 and, thanks to the leadership of Joe Devon, has grown to over 400 members in the past year. Joe Devon, a long-time member of the Silicon Beach tech community, shares his

The Los Angeles MongoDB User Group was founded in the summer of 2011 and, thanks to the leadership of Joe Devon, has grown to over 400 members in the past year. Joe Devon, a long-time member of the Silicon Beach tech community, shares his insights from a year of working with the MongoDB community in Los Angeles.?

You’re a User Group Veteran. How did you get started organizing user groups?

I was living in NY, with several meetups to choose from every night. Then moved to Los Angeles, where there were none. In the words of?Cal Evans, if you don’t know who your local organizer is, you’re looking at him :)?

So I started a bunch of meetups, told people to gather at Panera Bread once a month in one big, joint set of meetups…. And couldn’t get 10 people to show. But after awhile, there were some regulars. Some of whom agreed to take over a group here, a group there. Fast forward to today and there’s a ton of tech meetups in Los Angeles, with sometimes 100-200 people showing up on good nights.?

What is your favorite part about organizing?the LA MongoDB User Group?

I co-run the local MySQL group as well, but having an easier time getting DBAs out to the MongoDB meetups, because they feel they know everything there is to know about MySQL. But they need to learn MongoDB.

New technologies are always exciting. That’s one of the reasons that?there’s a lot of energy around the MongoDB community…Also, 10gen has been very supportive of all the local groups. Which is an approach that most tech companies have “unlearned” as an important ingredient in their arsenal.

How have you helped and encouraged the user group to grow??

I’m not as concerned about growing the community as in serving them. If 20 people learned a lot and took something with them that’s usable in their career, at their work, that’s much more important than getting 100 people to show up who got nothing tangible from a talk.

However, as it happens, if you have substance in your meetups, a side effect is that it grows to larger numbers.

What advice would you give to someone who was starting their own user group?

It’s a fair bit of work, but you will get more out of it than you put in. But for practicality:

1. Get the speaker’s cell phone number and give them yours. When they didn’t show, or they need your directions, boy will you be happy you did :)

2. Make sure you are clear about the parking situation. Especially if it costs money or it’s hard to find.

3. The venues usually do a lot of work to prep for talks. Try to arrive a bit early to help and also help at the end. One trick I use is to tell people that we will be doing a demo of Map/Reduce at the end of the talk. And when the time comes, I ask everyone to stand up, pick up the chair they were sitting in, and stack them up and move them against the wall. Which saves the venue half an hour of work.

Tell me about a memorable user group you hosted:?

We had a couple of really cool meetups with Wordnik’s team. Impressive stuff. They have a former dictionary editor on staff who spoke at the LASemWeb group. She has also spoken at TED.?

There’s some 100-150 dictionary editors worldwide and before the internet, it took ages to “define” all the words out there. They start at “M” so that by the time they get to “A”, they really are in the swing of things and get a good idea of what they are doing. I believe the figure was it takes the Oxford English Dictionary 75 years to get halfway through the dictionary.

They really broke taboos in the dictionary world by defining words real-time. ?Which leads to the follow up meetup for LAMongoDB by Tony Tam, their CTO (Now CEO). He’s using MongoDB on AWS and really knew his stuff. If anyone gets a chance to hear his talk, it’s well worth your while. They also open source their code and I’ve used their Swagger project to document an API.

Editor’s note: Many of Tony Tam’s MongoDB talks can be found here.

Aside from being a MongoDB enthusiast, what else inspires you??

Folks who break new ground. For now he is unsung, but Peter Rodgers has created a new methodology for software development called?Resource Oriented Computing. I believe it’s the wave of the future. If you want to read more about it, check out my friend,?Tom Geuden’s book:?Resource-Oriented Computing with NetKernel?Taking REST Ideas to the Next Level. There’s even a chapter about MongoDB in there ;)

There are 68 MongoDB user groups around the world (and more get added each day). Find your local MongoDB User Group (or ask us to help you start one)?

声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
MySQLはデータレプリケーションをどのように処理しますか?MySQLはデータレプリケーションをどのように処理しますか?Apr 28, 2025 am 12:25 AM

MySQLは、非同期、半同期、およびグループ複製の3つのモードを介してデータの複製を処理します。 1)非同期の複製パフォーマンスは高くなりますが、データが失われる可能性があります。 2)半同期複製により、データセキュリティが向上しますが、遅延が増加します。 3)グループレプリケーションは、高可用性要件に適したマルチマスターレプリケーションとフェールオーバーをサポートします。

説明ステートメントを使用してクエリパフォーマンスを分析するにはどうすればよいですか?説明ステートメントを使用してクエリパフォーマンスを分析するにはどうすればよいですか?Apr 28, 2025 am 12:24 AM

説明ステートメントは、SQLクエリのパフォーマンスを分析および改善するために使用できます。 1.説明ステートメントを実行して、クエリプランを表示します。 2。出力結果を分析し、アクセスの種類、インデックスの使用量に注意し、順序を結合します。 3.分析結果に基づいてインデックスを作成または調整し、結合操作を最適化し、フルテーブルスキャンを回避してクエリ効率を向上させます。

MySQLデータベースをバックアップして復元するにはどうすればよいですか?MySQLデータベースをバックアップして復元するにはどうすればよいですか?Apr 28, 2025 am 12:23 AM

論理バックアップにMySQLDUMPとホットバックアップにMySQLenterPriseBackupを使用することは、MySQLデータベースをバックアップする効果的な方法です。 1. mysqldumpを使用してデータベースをバックアップします:mysqldump-uroot-pmydatabase> mydatabase_backup.sql。 2。ホットバックアップにmysqlenterprisebackupを使用:mysqlbackup - user = root-password = password - backup-dir =/path/to/backupbackup。回復するときは、対応する寿命を使用します

MySQLのスロークエリの一般的な原因は何ですか?MySQLのスロークエリの一般的な原因は何ですか?Apr 28, 2025 am 12:18 AM

MySQLのクエリが遅い主な理由には、インデックスの欠落または不適切な使用、クエリの複雑さ、過剰なデータボリューム、および不十分なハードウェアリソースが含まれます。最適化の提案には以下が含まれます。1。適切なインデックスを作成します。 2。クエリステートメントを最適化します。 3.テーブルパーティションテクノロジーを使用します。 4.適切にハードウェアをアップグレードします。

mysqlのビューは何ですか?mysqlのビューは何ですか?Apr 28, 2025 am 12:04 AM

MySQLビューは、SQLクエリの結果に基づいた仮想テーブルであり、データを保存しません。 1)ビューは複雑なクエリを簡素化し、2)データセキュリティを強化し、3)データの一貫性を維持します。ビューは、テーブルのように使用できるデータベースにクエリを保存しますが、データは動的に生成されます。

MySQLと他のSQL方言の構文の違いは何ですか?MySQLと他のSQL方言の構文の違いは何ですか?Apr 27, 2025 am 12:26 AM

MySQLdiffersfromotherSQLdialectsinsyntaxforLIMIT,auto-increment,stringcomparison,subqueries,andperformanceanalysis.1)MySQLusesLIMIT,whileSQLServerusesTOPandOracleusesROWNUM.2)MySQL'sAUTO_INCREMENTcontrastswithPostgreSQL'sSERIALandOracle'ssequenceandt

MySQLパーティションは何ですか?MySQLパーティションは何ですか?Apr 27, 2025 am 12:23 AM

MySQLパーティション化により、パフォーマンスが向上し、メンテナンスが簡素化されます。 1)大きなテーブルを特定の基準(日付範囲など)、2)物理的に独立したファイルに物理的に分割する、3)MySQLはクエリするときに関連するパーティションに焦点を合わせることができます。

MySQLで特権をどのように許可して取り消しますか?MySQLで特権をどのように許可して取り消しますか?Apr 27, 2025 am 12:21 AM

mysqlで許可を許可および取り消す方法は? 1。grantallprivilegesondatabase_name.to'username'@'host 'などの許可を付与するために付与ステートメントを使用してください。 2。Revokeallprivilegesondatabase_name.from'username'@'host 'など、Revoke Statementを使用して、許可のタイムリーな通信を確保します。

See all articles

ホットAIツール

Undresser.AI Undress

Undresser.AI Undress

リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover

AI Clothes Remover

写真から衣服を削除するオンライン AI ツール。

Undress AI Tool

Undress AI Tool

脱衣画像を無料で

Clothoff.io

Clothoff.io

AI衣類リムーバー

Video Face Swap

Video Face Swap

完全無料の AI 顔交換ツールを使用して、あらゆるビデオの顔を簡単に交換できます。

ホットツール

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser は、オンライン試験を安全に受験するための安全なブラウザ環境です。このソフトウェアは、あらゆるコンピュータを安全なワークステーションに変えます。あらゆるユーティリティへのアクセスを制御し、学生が無許可のリソースを使用するのを防ぎます。

ゼンドスタジオ 13.0.1

ゼンドスタジオ 13.0.1

強力な PHP 統合開発環境

mPDF

mPDF

mPDF は、UTF-8 でエンコードされた HTML から PDF ファイルを生成できる PHP ライブラリです。オリジナルの作者である Ian Back は、Web サイトから「オンザフライ」で PDF ファイルを出力し、さまざまな言語を処理するために mPDF を作成しました。 HTML2FPDF などのオリジナルのスクリプトよりも遅く、Unicode フォントを使用すると生成されるファイルが大きくなりますが、CSS スタイルなどをサポートし、多くの機能強化が施されています。 RTL (アラビア語とヘブライ語) や CJK (中国語、日本語、韓国語) を含むほぼすべての言語をサポートします。ネストされたブロックレベル要素 (P、DIV など) をサポートします。

SublimeText3 中国語版

SublimeText3 中国語版

中国語版、とても使いやすい

AtomエディタMac版ダウンロード

AtomエディタMac版ダウンロード

最も人気のあるオープンソースエディター